Releases: elastic/elasticsearch-java
Releases Β· elastic/elasticsearch-java
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
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
v9.0.2
What's Changed
Full Changelog: v9.0.1...v9.0.2
v8.18.2
What's Changed
Full Changelog: v8.18.1...v8.18.2
v8.17.7
What's Changed
Full Changelog: v8.17.6...v8.17.7
v9.0.1
What's Changed
- Added missing dependency commons-logging
- Updated apache httpclient5 dependency to 5.4.4 (5.4.0 had a known vulnerability)
Full Changelog: v9.0.0...v9.0.1