业务需求: 开始环境可能不太稳定, 需要每天手动检查 Hive 里面的数据是否同步
## 步骤
1. 查看分区
show partitions table_name;
2.查看分区更新时间
- 获取hdfs路径
desc formatted table_name;
3. 通过dfs -ls < hdfs path>命令查看数据文件最新更新时间
dfs -ls hdfs://hdfs-master:9000/user/hive/warehouse/ods.db/test;
标签:hdfs,查看,分区,dfs,Hive,table
From: https://www.cnblogs.com/Dr-wei/p/17586951.html