我在蜂巢中有一个外部表,我想每天更改它的位置。我想直接在 hive 脚本中执行如下操作:
set current_day = from_unixtime(unix_timestamp(), 'yyyy_mm_dd');
ALTER TABLE myTable ADD PARTITION (dt=${hiveconf:current_day})
LOCATION concat('s3://.../',${hiveconf:current_day});
您能否向我展示 Hive 中的正确脚本?
最好的,