trino组件对接hive(一)
前提:本文是在部署了trino组件和hive组件后,进行的trino与hive组件的对接。
1、增加hive connector配置
在trino安装部署下的etc/catalog下,创建hive.properties文件,将集群中的core-site.xml、hdfs-site.xml放在etc下面,在hive.properties中进行指定。将配置文件hive.properties、core-site.xml、hdfs-site.xml分发到所有trino节点
vim hive.properties connector.name=hive hive.metastore.uri=thrift://hadoop001:9083 #hive.config.resources=/opt/hadoop/etc/hadoop/core-site.xml,/opt/hadoop/etc/hadoop/hdfs-site.xml hive.config.resources=/opt/trino/etc/core-site.xml,/opt/trino/etc/hdfs-site.xml hive.metastore-cache-ttl=300s hive.metastore-refresh-interval=300s
2、trino进行重启
/opt/trino/bin/launcher stop /opt/trino/bin/launcher start