apache tajo 연동 개발 후기

22
Apache Tajo Cloudine 박박박 2015.08.27

Upload: -

Post on 16-Feb-2017

660 views

Category:

Data & Analytics


0 download

TRANSCRIPT

Page 1: apache tajo 연동 개발 후기

Apache TajoCloudine박효근

2015.08.27

Page 2: apache tajo 연동 개발 후기

Agenda

Tajo Editor 개발 후기 Tajo 에게 바라는 점

Page 3: apache tajo 연동 개발 후기

Tajo Editor 개발 후기

Page 4: apache tajo 연동 개발 후기

어느날 갑자기……

Page 5: apache tajo 연동 개발 후기

Tajo 메뉴얼을 찾아보자

Page 6: apache tajo 연동 개발 후기

Tajo Editor 기능목록구분 기능

Database Create, Drop, Alter

Table Create, Drop, Alter

Column Add, Drop, Alter

Partition Add, Drop, Alter

Query Execute, Result

Page 7: apache tajo 연동 개발 후기

메뉴얼에 Alter 가 없다 !

Page 8: apache tajo 연동 개발 후기

Test 코드를 잘 확인하자 .

Page 9: apache tajo 연동 개발 후기

Tajo Client public boolean createDatabase(final String databaseName) throws ServiceException; public boolean existDatabase(final String databaseName) throws ServiceException; public boolean dropDatabase(final String databaseName) throws ServiceException; public List<String> getAllDatabaseNames() throws ServiceException; public boolean existTable(final String tableName) throws ServiceException; public TableDesc createExternalTable(final String tableName, final Schema schema, final URI path, final TableMeta meta) throws SQLException, ServiceException; public TableDesc createExternalTable(final String tableName, final Schema schema, final URI path, final TableMeta meta, final PartitionMethodDesc partitionMethodDesc) throws SQLException, ServiceException; public boolean dropTable(final String tableName) throws ServiceException; public boolean dropTable(final String tableName, final boolean purge) throws ServiceException; public List<String> getTableList(@Nullable final String databaseName) throws ServiceException; public TableDesc getTableDesc(final String tableName) throws ServiceException; public List<CatalogProtos.FunctionDescProto> getFunctions(final String functionName) throws ServiceExcep-

tion;

Page 10: apache tajo 연동 개발 후기

Client 에 Alter 가 없다 !

Page 11: apache tajo 연동 개발 후기

Apache Tajo Editor

1 2

Metastore Editor

Page 12: apache tajo 연동 개발 후기

Tajo Table Meta종류 메타

Table Type Base, External

File Type Text, RCFile, Parquet, SequenceFile

ColumnBoolean, Tinyint, Smallint, Integer, Bigint, Real, Float, Double, Text, Blob, Date, Time, Time-stamp, Inet4

Textfile Delimiter, Null Text, Error Tolerance, SerDe, Compress

RCFile SerDe, Compress

Parquet Block Size, Page Size, Compress, Dictionary

SequenceFile SerDe

Page 13: apache tajo 연동 개발 후기

Client 활용한 테이블 생성createExternalTable

table-Name

Schema URI TableM

eta

Store-Type

TextFile

RCFile

Parquet

Sequencefile

Options

Partition-Method-

Desc

Page 14: apache tajo 연동 개발 후기

Client 활용한 테이블 생성

Page 15: apache tajo 연동 개발 후기

Client 활용한 테이블 생성

Page 16: apache tajo 연동 개발 후기

Client 활용한 테이블 생성

Page 17: apache tajo 연동 개발 후기

Client 활용한 테이블 생성

Page 18: apache tajo 연동 개발 후기

Flamingo Tajo 연동 계획 Alter 기능 제공 Monitoring

◦ Master, Worker◦ Job◦ Resource

Page 19: apache tajo 연동 개발 후기

Tajo 에게 바라는점

Page 20: apache tajo 연동 개발 후기

1. 메뉴얼

Page 21: apache tajo 연동 개발 후기

2. UDF Function

Page 22: apache tajo 연동 개발 후기

Q&A