首页 > 其他分享 >Trino集成各组件

Trino集成各组件

时间:2023-07-05 14:23:08浏览次数:28  
标签:集成 hudi show hive 组件 HOME Trino trino

Hive

Mysql

Hudi

trino 集成hudi 是基于hive catalog, 同样是访问hive外表进行查询。如果要集成,需要把hudi trino jar包copy 到trino plugin hive插件下面。

cp hudi/hudi-0.12.0/packaging/hudi-trino-bundle/target/hudi-trino-bundle-0.12.0.jar $TRINO_HOME/plugin/hive/
查询

$TRINO_HOME/bin/trino --server pmaster:9000

show schemas from hive;
show tables from hive.hudi_hive;

select * from hive.hudi_hive.tbl_customer;

标签:集成,hudi,show,hive,组件,HOME,Trino,trino
From: https://www.cnblogs.com/sandyyeh/p/17528383.html

相关文章