Skip to content

Releases: elastic/elasticsearch-java

v9.0.4

18 Jul 12:29
Compare
Choose a tag to compare

What's Changed

Reintroduced callback functions to allow in depth configuration of Rest5ClientBuilder, like the legacy RestClientBuilder has.
Examples:

Rest5ClientBuilder builder = Rest5Client
    .builder(new HttpHost("localhost", 9200))
    .setHttpClientConfigCallback(c -> c
        .setIOReactorConfig(IOReactorConfig.custom()
            .setIoThreadCount(1).build()
        )
    );
Rest5ClientBuilder builder = Rest5Client
    .builder(new HttpHost("localhost", 9200))
    .setRequestConfigCallback(r -> r
        .setConnectTimeout(Timeout.of(5000, TimeUnit.MILLISECONDS))
        .setResponseTimeout(Timeout.of(30000, TimeUnit.MILLISECONDS))
        .build()
    );

Full Changelog: v9.0.3...v9.0.4

v9.0.3

01 Jul 09:11
cec17e7
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.2...v9.0.3

v8.18.3

01 Jul 09:11
212a483
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.2...v8.18.3

v8.17.8

01 Jul 09:10
238d93f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.17.7...v8.17.8

v9.0.2

04 Jun 09:41
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.1...v9.0.2

v8.18.2

04 Jun 09:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.18.1...v8.18.2

v8.17.7

04 Jun 09:40
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.17.6...v8.17.7

v9.0.1

08 May 09:56
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0.0...v9.0.1

v8.18.1

08 May 09:58
Compare
Choose a tag to compare

What's Changed

  • Solved #995, client versions 8.x now fully support java 8

Full Changelog: v8.18.0...v8.18.1

v8.17.6

08 May 09:59
Compare
Choose a tag to compare

What's Changed

  • Solved #995, client versions 8.x now fully support java 8

Full Changelog: v8.17.5...v8.18.6