PrestoServer No factory for connector hive 问题解决

安装了presto去连接hive,启动时一直报以下错误:



2015-09-23T17:49:34.771+0800    ERROR   main    com.facebook.presto.server.PrestoServer No factory for connector hive 
java.lang.IllegalArgumentException: No factory for connector hive
        at com.google.common.base.Preconditions.checkArgument(Preconditions.java:145) ~[guava-18.0.jar:na]
        at com.facebook.presto.connector.ConnectorManager.createConnection(ConnectorManager.java:104) ~[presto-main-0.100.jar:0.100]
        at com.facebook.presto.metadata.CatalogManager.loadCatalog(CatalogManager.java:88) ~[presto-main-0.100.jar:0.100]
        at com.facebook.presto.metadata.CatalogManager.loadCatalogs(CatalogManager.java:70) ~[presto-main-0.100.jar:0.100]
        at com.facebook.presto.server.PrestoServer.run(PrestoServer.java:107) [presto-main-0.100.jar:0.100]
        at com.facebook.presto.server.PrestoServer.main(PrestoServer.java:59) [presto-main-0.100.jar:0.100]
        


我的hive.properties如下:
connector.name=hive
hive.metastore.uri=thrift://h2:9083
hive.config.resources=/usr/local/hadoop-2.4.0/etc/hadoop/core-site.xml, /usr/local/hadoop-2.4.0/etc/hadoop/hdfs-site.xml
hive.allow-drop-table=true


解决:

在hive.properties中 connector.name写错了,应该为指定的版本,以便于presto使用对应的适配器,修改为:
connector.name=hive-hadoop2

        
        

你可能感兴趣的:(分布式计算)