Select-HDFS Cmdlet
Searches HDFS data.
Syntax
Select-HDFS [parameters]
Remarks
The Select-HDFS cmdlet allows you to use a syntax similar to SQL SELECT statements to search HDFS data.
$conn = Connect-HDFS -Host "sandbox-hdp.hortonworks.com" -Port "50070" -Path "/user/root" Select-HDFS -Connection $conn -Table "Files" -Columns @("FileId","ChildrenNum") -Where "FileId='119116'"