Releases: elastic/elasticsearch-java
Releases · elastic/elasticsearch-java
v8.18.5
What's Changed
Full Changelog: v8.18.4...v8.18.5
v8.17.10
What's Changed
Full Changelog: v8.17.9...v8.17.10
v9.1.0
What's Changed
Check the official release notes - in particular the breaking changes.
Features and Enhancements:
Full Changelog: v9.0.4...v9.1.0
v8.19.0
What's Changed
Full Changelog: v8.18.4...v8.19.0
v8.17.9
What's Changed
Full Changelog: v8.17.8...v8.17.9
v9.0.4
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
v8.18.4
What's Changed
Full Changelog: v8.18.3...v8.18.4
v9.0.3
What's Changed
Full Changelog: v9.0.2...v9.0.3
v8.18.3
What's Changed
Full Changelog: v8.18.2...v8.18.3
v8.17.8
What's Changed
Full Changelog: v8.17.7...v8.17.8