Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

HDP 2.4.2 Flume build, source from gitgub, fails

avatar
Explorer

Please help, error message

[INFO] ------------------------------------------------------------------------

[INFO] Building Flume NG Hive Sink 1.5.2

[INFO] ------------------------------------------------------------------------ [WARNING] The POM for org.apache.calcite:calcite-core:jar:0.9.2-incubating-SNAPSHOT is missing, no dependency information available [WARNING] The POM for org.apache.calcite:calcite-avatica:jar:0.9.2-incubating-SNAPSHOT is missing, no dependency information available

........

.........

Flume NG Hive Sink ................................. FAILURE [ 0.151 s]

...........

[ERROR] Failed to execute goal on project flume-hive-sink: Could not resolve dependencies for project org.apache.flume.flume-ng-sinks:flume-hive-sink:jar:1.5.2: The following artifacts could not be resolved: org.apache.calcite:calcite-core:jar:0.9.2-incubating-SNAPSHOT, org.apache.calcite:calcite-avatica:jar:0.9.2-incubating-SNAPSHOT: Failure to find org.apache.calcite:calcite-core:jar:0.9.2-incubating-SNAPSHOT in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of public has elapsed or updates are forced -> [Help 1]

1 ACCEPTED SOLUTION

avatar
Master Mentor

It is up on maven central, try to confirm each of them manually

<!-- https://mvnrepository.com/artifact/org.apache.calcite/calcite-avatica -->
<dependency>
    <groupId>org.apache.calcite</groupId>
    <artifactId>calcite-avatica</artifactId>
    <version>0.9.2-incubating</version>
</dependency>


View solution in original post

2 REPLIES 2

avatar
Master Mentor

It is up on maven central, try to confirm each of them manually

<!-- https://mvnrepository.com/artifact/org.apache.calcite/calcite-avatica -->
<dependency>
    <groupId>org.apache.calcite</groupId>
    <artifactId>calcite-avatica</artifactId>
    <version>0.9.2-incubating</version>
</dependency>


avatar
Explorer

thanks for fast reply,