gpt4 book ai didi

apache - 无法在Apache演练中为Hive创建存储插件

转载 作者:行者123 更新时间:2023-12-02 21:16:51 24 4
gpt4 key购买 nike

我是Apache操练的新手,为Apache hive创建存储插件时遇到错误,我尝试了两种方法,下面是配置。

1.第一种方法:

        {
"type": "hive",
"enabled": false,
"configProps": {
"hive.metastore.uris": "thrift2:localhost:10000",
"fs.default.name": "hdfs://localhost:9000/",
"hive.metastore.sasl.enabled": "false"
}
}

2.第二种方法:
        {
"type": "hive",
"enabled": false,
"configProps": {
"hive.metastore.uris": "",
"javax.jdo.option.ConnectionURL": "jdbc:derby://localhost:1527/metastore_db;create=true",
"hive.metastore.warehouse.dir": "/user/tmp/warehouse/hive",
"fs.default.name": "hdfs://localhost:9000",
"hive.metastore.sasl.enabled": "false"
}
}

我使用的是简单的Apache组件,而drill和hive2都安装在同一台计算机上。

对于这两种情况,我都在GUI中收到错误
Please retry: error (unable to create/ update storage)

请帮助我解决相同的问题。谢谢!!

最佳答案

我能够通过第一种方法进行连接,即Hive远程元存储连接。

这是配置:

    {
"type": "hive",
"enabled": false,
"configProps": {
"hive.metastore.uris": "thrift:localhost:9083",
"fs.default.name": "hdfs://localhost:9000/",
"hive.metastore.sasl.enabled": "false"
}
}

还要确保Hive Metastore已启动并正在运行,可以使用以下命令启动它
hive -- service metastore &.

另外, hive.metastore.uris中的参数 hive-site.xml也应使用 thrift://localhost:9083更新。

谢谢

关于apache - 无法在Apache演练中为Hive创建存储插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38562150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com