Data Engineering/SQL Skin

Hive - Presto 연동

quantapia 2019. 2. 18. 13:44

HBase의 데이터를 빠르게 조회하기 위해 Presto를 사용했다.


Presto Cli를 통해 Presto에 접속하려면 Server 정보를 알아야한다.



[hadoop@ip-10-251-157-177 ~]# presto-cli --server 10.251.157.177:8889 --catalog hive --schema default;



스키마 검색

presto:default> show schemas from hive;

       Schema

--------------------

 default

 information_schema

(2 rows)


Query 20190218_042334_00002_k6s2t, FINISHED, 3 nodes

Splits: 36 total, 36 done (100.00%)

0:00 [2 rows, 35B] [5 rows/s, 97B/s]



테이블 검색

presto:default> show tables from hive.default;

  Table

----------

 cost_tbl

(1 row)


Query 20190218_043654_00003_k6s2t, FINISHED, 3 nodes

Splits: 36 total, 36 done (100.00%)

0:00 [1 rows, 25B] [2 rows/s, 60B/s]