BIGDATA/HIVE
hive dymamic partition 에러
옥토캣
2023. 2. 10. 13:46
데이터를 조회할 때 아래와 같은 에러 발생
: Fatal error occurred when node tried to create too many dynamic partitions. The maximum number of dynamic partitions is controlled by hive.exec.max.dynamic.partitions and hive.exec.max.dynamic.partitions.pernode. Maximum was set to 100 partitions per node, number of dynamic partitions on this node: 101
파티션 제한 설정을 변경하여 해결
set hive.exec.max.dynamic.partitions=100000;
set hive.exec.max.dynamic.partitions.pernode=100000;