본문 바로가기
빅데이터/hive

[hive] drop table 처리중 GC 또는 OutOfMemory 오류가 발생하는 경우

by hs_seo 2018. 3. 14.

테이블 drop 중 OutOfMemory 오류가 발생하는 경우가 있다. 

이럴때는 파티션을 먼저 지워주고 drop 하면 된다. 


java.lang.OutOfMemoryError: GC overhead limit exceeded or

java.lang.OutOfMemoryError: Java heap space


다음과 같이 파티션을 지우고 테이블을 drop 하면 된다. 


alter table [테이블명] drop partition (파티션명=값);
alter table [테이블명] drop partition (파티션명 > 값);


반응형