Elasticsearch 5 connector in Apache Flink 1.3

Reading the documentation I realized that as of Apache Flink 1.3, I have to use Elasticsearch 5.x.

However, in my pom.xml:

    <dependency>
        <groupId>org.apache.flink</groupId>
        <artifactId>flink-connector-elasticsearch5_2.10</artifactId>
        <version>1.3.0</version>
    </dependency>

      

I got it:

Dependency "org.apache.flink: flink-connector-elasticsearch5_2.10: 1.3.0" not found

Any idea why this dependency is unfounded?

+3


source to share


2 answers


This was a bug in 1.3.0 and fixed for 1.3.1 (which should happen very soon). See the mailing list for details .



+3


source


Use the following in pom.xml



<dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-connector-elasticsearch5_2.10</artifactId>
    <version>1.3.1</version>
</dependency>

      

+1


source







All Articles