目前我在启动impala集群时遇到了以下错误。命令:
$ ./start-impala-cluster.py --verbose
输出:
...
Waiting for Catalog... Status: 1 DBs / 0 tables (ready=False)
Waiting for Catalog... Status: 1 DBs / 0 tables (ready=False)
Error starting cluster: Catalog was not initialized in expected time period.
当我打开start-implaa-cluster.py时,“catalog.num tables”的度量值总是零。我可以知道如何深入调查并解决这个问题吗?
我提到了“ Impala 建筑”文件:https://cwiki.apache.org/confluence/display/impala/building+impala
我现在正在使用centos 7。
谢谢,金丘
1条答案
按热度按时间yeotifhr1#
我自己找到了解决办法:)
目录信息应与配置单元元存储区对齐。这意味着 Impala 可能无法连接Hive元存储。我可以从${impala\u home}/logs/cluster下的日志文件中找到线索。
至于配置文件,
如果通过cdh安装impala,请选中/etc/impala/conf。
如果您使用源代码构建和安装impala,请检查${impala\u home}/fe/src/test/resourcers。
对于您的信息,cloudera impala用户指南绝对给了我很好的建议,让我了解它是如何工作的。请参考链接或用关键词{cloudera+impala+pdf}进行谷歌搜索
https://www.cloudera.com/documentation/enterprise/5-5-x/pdf/cloudera-impala.pdf
谢谢,金丘