码迷,mamicode.com
首页 > 其他好文 > 详细

HDFS数据定期清理

时间:2019-09-30 09:32:15      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:files   数据清理   多个   process   date()   roc   yar   oop   归档   

HDFS数据清理一些办法:

datanode数据做reblance
清理临时目录、日志目录文件
全量分区表历史分区清理
使用lzo,orc格式进行数据压缩
清理或者归档历史冷数据
增加datanode横向扩容
附上自动清理目录下过期的文件

#!/bin/bash
source ~/.bash_profile



# 将待检测的目录(可以为多个)加载至数组中
yarn_log_dir=/app-logs/spark/logs
spark_log_dir=/spark-history
spark2_log_dir=/spark2-history
mr_log_dir=/mr-history/done/$(date +"%Y/%m" -d "-1 days")

array_check=($yarn_log_dir $mr_log_dir)

# 过期天数
expire_days=14

# 当前时间戳
today_timestamp=$(date -d "$(date +"%Y-%m-%d %H:%M")" +%s)

#Func: 删除指定时间之前的过期
removeOutDate(){
hadoop fs -ls $1 > temp_list.txt
cat temp_list.txt | while read quanxian temp user group size day hour filepath
do
current_file_time="$day $hour"
current_file_timestamp=$(date -d "$current_file_time" +%s)
if [ $(($today_timestamp-$current_file_timestamp)) -ge $(($expire_days*24*60*60)) ];then
echo "$day $hour $size $filepath"
hadoop fs -rm -r -skipTrash $filepath > /dev/null 2>&1
fi
done
}

#Func: 执行删除
execute(){
echo -e "\n\n"
echo "$(date +‘%Y-%m-%d %H:%M:%S‘) start to remove outdate files in hdfs"
echo "$(date +‘%Y-%m-%d %H:%M:%S‘) today is: $(date +"%Y-%m-%d %H:%M:%S")"

for i in ${array_check[@]}
do
echo "$(date +‘%Y-%m-%d %H:%M:%S‘) processing filepath: $i"
removeOutDate $i
echo -e "\n"
done

echo "$(date +‘%Y-%m-%d %H:%M:%S‘) remove outdate files in hdfs finished"
echo -e "\n\n"

rm -f temp_list.txt
}

# 开始执行
execute

HDFS数据定期清理

标签:files   数据清理   多个   process   date()   roc   yar   oop   归档   

原文地址:https://www.cnblogs.com/hanhaotian/p/11610901.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!