标签: hive bigdata
是否可以为已包含分区的表创建存储区?
我在hive中有一个包含超过100M记录的表,我想在此创建一个存储桶。
答案 0 :(得分:0)
不,你不能,你必须创建另一个启用了bucketing的表:
set hive.enforce.bucketing = true; FROM old_table insert into table new_bucketed_partitioned_table select * ;