现在我有一个表,它的结构如下,
hive> desc clicks_fact;
OK
time timestamp
..
day date
file_date varchar(8)
# Partition Information
# col_name data_type comment
day date
file_date varchar(8)
Time taken: 1.075 seconds, Fetched: 28 row(s)
现在我想得到这个表的分区。
hive> show partitions clicks_fact;
OK
day=2016-09-02/file_date=20160902
..
day=2017-06-30/file_date=20170629
Time taken: 0.144 seconds, Fetched: 27 row(s)
我可以将分区作为两者的组合 day & file_date
. 现在,有没有办法只得到 file_date
1条答案
按热度按时间thigvfpy1#
hive为元数据检索提供了非常有限的选项。
直接查询元存储。
演示
Hive
元存储(mysql)