Как выполнить поиск строк HDFS рекурсивно в HDFS
# How to perform hdfs string search recursively in hdfs
hadoop fs -cat /hive-data/* | grep -i pattern
Stupid Salmon
# How to perform hdfs string search recursively in hdfs
hadoop fs -cat /hive-data/* | grep -i pattern
# How to recursively find a file in the Hadoop Distributed file system hdfs:
hdfs dfs -ls -R / | grep [search_term]