hive partition 테이블에 신규 파티션 추가후 자동으로 인식하기 위해서
1. 디렉토리 포맷을 아래와 같이 구성
/tmp/test/pt=20170309/
형식 : partition 이름 => pt partition value => 20170309
create external table test
(
id string
)
partitioned by (pt string)
row format delimited fields terminated by ","
location '/tmp/test'
2. auto 인식
msck repair table test
'NoSQL > Hive' 카테고리의 다른 글
hive custom udf (0) | 2017.07.29 |
---|---|
hive function (0) | 2017.02.27 |
hive에서 RDB와 CRUD (0) | 2017.02.25 |
impala가 지원하지 않는 기능 (0) | 2017.02.25 |
hive index (0) | 2017.02.19 |