Elasticsearch Connector

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Elasticsearch Connector

Eamon Kavanagh
Hey Support,

I'm trying to use Flink's Elasticsearch connector but I'm having trouble.  When I add the dependency seen here (https://ci.apache.org/projects/flink/flink-docs-master/apis/streaming/connectors/elasticsearch2.html) to my pom file, IntelliJ can't find it.  I also can't find it on the maven central repository— has it since been taken down?

Thanks,
Eamon
Reply | Threaded
Open this post in threaded view
|

Re: Elasticsearch Connector

Till Rohrmann

Hi Eamon,

in order to use the snapshot binaries you have to add the snapshot repository to your pom.xml:

<repository>
    <id>apache.snapshots</id>
    <name>Apache Development Snapshot Repository</name>
    <url>https://repository.apache.org/content/repositories/snapshots/</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

Cheers,
Till


On Thu, Jun 16, 2016 at 5:14 PM, Eamon Kavanagh <[hidden email]> wrote:
Hey Support,

I'm trying to use Flink's Elasticsearch connector but I'm having trouble.  When I add the dependency seen here (https://ci.apache.org/projects/flink/flink-docs-master/apis/streaming/connectors/elasticsearch2.html) to my pom file, IntelliJ can't find it.  I also can't find it on the maven central repository— has it since been taken down?

Thanks,
Eamon