1

如何为 Hive 0.11.0 构建 oozie 3.3.2 ?我已经修改了必要的 pom 文件以匹配配置单元版本。我收到以下异常:

Failure to find org.apache.hive:hive-builtins:jar:0.11.0 in http://repo1.maven.org/maven2

更新:我可以使用 Hive 0.10.0 的 hive-builtins 吗?

4

1 回答 1

0

我认为您在 OOZIE_HOME/pom.xml 中将 hive-0.10.0 编辑为 hive-0.11.0。hive-0.11.0 没有 hive-builtins.jar,因此从 OOZIE_HOME/sharelib/hive/pom.xml 中删除 hive-bulitins 依赖项。我向你展示了 pom.xml 中的 hive-builtins 依赖行,从 pom.xml 中删除这些行

<dependency>
    <groupId>org.apache.hive</groupId>
    <artifactId>hive-builtins</artifactId>
    <scope>compile</scope>
</dependency>
于 2014-06-04T07:04:57.723 回答