gpt4 book ai didi

apache-spark - Spark 中的 HIVE Metastore 警告

转载 作者:行者123 更新时间:2023-12-04 17:54:57 25 4
gpt4 key购买 nike

在启动 spark-shell 时我经常收到这样的警告

WARN ObjectStore: Version information not found in 
metastore. hive.metastore.schema.verification is not enabled so
recording the schema version 1.2.0
WARN ObjectStore: Failed to get database default, returning NoSuchObjectException
java.lang.RuntimeException:

它们是什么意思,我该如何预防。此警告可能也出现在 2.0.2 和 1.6.2 上。

最佳答案

默认情况下,hive.metastore.schema.verification 设置为 false。另一个配置设置为 false 以避免此错误。在您的 hive-site.xml 中设置以下配置。(这个问题是由于metastore中的VERSION表是空的)

<property>
<name>hive.metastore.schema.verification</name>
<value>false</value>
</property>

<property>
<name>hive.metastore.schema.verification.record.version</name>
<value>false</value>
</property>

关于apache-spark - Spark 中的 HIVE Metastore 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41136946/

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