반응형
Export
hive table의 메타데이터와 데이터를 추출하는 명령어이다.
hdfs 경로에 저장이 된다.
export table import_tbl_2 to '/user/public/sunnytest/exporttest';
Import
export한 테이블을 import 명령어로 가져올 수 있다.
대상 테이블이 이미 있고 파티션이 없는 경우, 데이터가 비워져 있어야 한다.
대상 테이블이 이미 있고 파티션이 있는 경우, 가져올 파티션에 데이터가 비워져 있어야 한다.
import table imported_tbl from '/user/public/sunnytest/exporttest';
export한 디렉토리와 파일들은 import를 수행할 클러스터로 복사해야 할 것이다.
- distcp 같은 툴로 복사하거나
- 서버간 파일 전송 scp같은 툴로 복사한다.
반응형
'BigData 기술 > Hive,Presto,Trino' 카테고리의 다른 글
[Hive] managed table , external table 차이 (4) | 2021.03.09 |
---|---|
Hive 트랜잭션 테이블 (Hive update, delete) (677) | 2021.01.03 |
[Presto] Memory Pool / Memory configuration (config.properties) (928) | 2020.07.22 |
IntelliJ에서 Presto Query 날리기 (2) | 2020.05.14 |
hive udf 등록하는 방법 (2) | 2019.11.28 |
댓글