Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

HDP 2.4.2 Flume build, source from gitgub, fails

avatar
New Member

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
New Member

thanks for fast reply,