하이브에서 다음과 같은 오류가 발생하면 이는 다이나믹 파티션 처리중 생성가능한 파티션 개수 이상의 파티션이 생성되어서 발생하는 것이다.
아래 오류의 내용처럼 해당 설정을 늘여주면 된다.
Caused by: org.apache.hadoop.hive.ql.metadata.HiveFatalException: [Error 20004]: 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
at org.apache.hadoop.hive.ql.exec.FileSinkOperator.getDynOutPaths(FileSinkOperator.java:933)
-- 생성가능한 다이나믹 파티션의 총 개수를 1000개로 설정
set hive.exec.max.dynamic.partitions=1000;
-- 노드별로 생성가능한 파티션의 개수는 100개로 설정
set hive.exec.max.dynamic.partitions.pernode=100;
반응형
'빅데이터 > hive' 카테고리의 다른 글
[hive] 하이브 데이터베이스 이름 변경(hive database rename) (0) | 2018.05.25 |
---|---|
[hive] 트랜잭션(Transactional, ACID) 테이블 구성 (0) | 2018.05.21 |
[hive] Container failed, exitCode=1. Exception from container-launch 오류 해결방법 (0) | 2018.04.26 |
[hive] hive cli 로그 출력하게 설정 변경 (0) | 2018.04.25 |
[hive][스크랩] hive orc 예제 (0) | 2018.04.20 |