2018年7月26日木曜日

hiveにデータ投入時に、「SemanticException [Error 10062]: Need to specify partition columns because the destination table is partitioned」の対策

パーティションが切っているテーブルに、パーティションキーを指定しないと、表題のようなエラーになります。

解消方法として、以下のように、「partition」を明確に指定することです。
メタデータの先頭に移動
SET hive.exec.dynamic.partition.mode=nonstrict;
insert overwrite table tmp_xxx.test_log partition(id) select * from common.log where id = 15692 and date between '2018-06-22 00:00' and '2018-06-22 23:59';

0 件のコメント:

コメントを投稿