Answers for "how to perform hdfs string search recursively in hdfs"

0

how to perform hdfs string search recursively in hdfs

# How to perform hdfs string search recursively in hdfs
hadoop fs -cat /hive-data/* | grep -i pattern
Posted by: Guest on January-04-2021
0

how to perform hdfs string search recursively in hdfs

# How to recursively find a file in the Hadoop Distributed file system hdfs:
hdfs dfs -ls -R / | grep [search_term]
Posted by: Guest on January-04-2021

Code answers related to "how to perform hdfs string search recursively in hdfs"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language