Expected release window of 6.5.0/7.0.0

Hello!

I am looking forward to the implementation of DeleteByQuery in the next version of the High Level Rest Client. I was wondering about a few things regarding this feature:

  • When can we expect a release with this feature? I can imagine a release of 6.5.0 is nearer than of 7.0.0, but that's just a guess.

  • I tried to connect to the maven repository with the snapshots to be able to try it out in my IDE, but it seems like the repository is not available (I tried to connect to https://snapshots.elastic.co/maven/ with maven, but it couldn't connect). Is there a possibility to check out a snapshot with the function implemented?

Thanks in advance!

When can we expect a release with this feature?

We never announce release dates.

I tried to connect to the maven repository with the snapshots to be able to try it out in my IDE, but it seems like the repository is not available (I tried to connect to https://snapshots.elastic.co/maven/ with maven, but it couldn't connect).

What did you do exactly? Adding this URL as a repository should work. Could you share your pom.xml?

Note that you might have to add Lucene as well: Maven Repository | Java REST Client [7.17] | Elastic

1 Like

Thanks for responding to me!

I am trying to access the Maven Snapshot repository with the following code:

<repositories>
    <repository>
        <id>elasticsreachSnapshots</id>
        <name>Elasticsearch Snapshot repo</name>
        <url>https://snapshots.elastic.co/maven</url>
    </repository>
</repositories>


    <dependency>
        <groupId>org.elasticsearch.client</groupId>
        <artifactId>elasticsearch-rest-high-level-client</artifactId>
        <version>6.5.0-SNAPSHOT</version>
    </dependency>

This worked well for me:

    <repositories>
        <repository>
            <id>elasticsreachSnapshots</id>
            <name>Elasticsearch Snapshot repo</name>
            <url>https://snapshots.elastic.co/maven</url>
        </repository>
        <repository>
            <id>elastic-lucene-snapshots</id>
            <name>Elastic Lucene Snapshots</name>
            <url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/b5bf70b7e3</url>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>false</enabled></snapshots>
        </repository>
    </repositories>

That solved all the dependency issues I was having, thanks again!

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.