shell遍历hdfs上的文件目录

前端之家收集整理的这篇文章主要介绍了shell遍历hdfs上的文件目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

背景:

需要批量把hdfs上某个目录中的所有以.pending 结尾的文件,去掉.pending后缀。主要原因是建立的hive外表无法读取.tmp或.pending的文件,所以需要去掉后缀。

hdfs上文件的结构是根目录/data/qytt/flink/ttengine_predict/下有dt=2017-12-28的天级目录,在天级目录下会有hour=00-23的24个小时级目录,文件都在小时级目录中。

#!/bin/bash  
#print the directory and file
hadoop fs -ls /data/qytt/flink/ttengine_predict/dt=2017-12-27/ | awk '{print $8}' > files0.txt
#循环遍历,提取所需数据
cat  ./files0.txt | while read line
do
	echo "$line"
	hadoop fs -ls $line | awk '{print $8}' > files1.txt
	cat  ./files1.txt | while read fname
	do
		echo "$fname"
		_path=`echo $fname | awk -F'.' '{print $1}'`
		hadoop fs -mv $fname $_path
		#echo $_path
	done
done 
原文链接:https://www.f2er.com/bash/389128.html

猜你在找的Bash相关文章