elasticsearch-java icon indicating copy to clipboard operation
elasticsearch-java copied to clipboard

Official Elasticsearch Java Client

Results 222 elasticsearch-java issues
Sort by recently updated
recently updated
newest added

### Java API client version 8.4.0 (but seems to be introduced 8.3.0) ### Java version 17 ### Elasticsearch Version 8.4.0 ### Problem description Create an enrich policy with: `PUT _enrich/policy/zones2-policy...

### Description 我的java使用elasticsearch-java调用方式调用elasticsearch7.17,如何追加其他条件呢? 实例:现在我的前端页面上有两个筛选条件,用户可以根据自己需求不选择条件、选择一个条件或者选择两个条件,我在生成SearchRequest后该如何根据实际情况追加query的内容呢? 如图,如果departmentId不为空才添加红框内的内容,该如何实现呢 ![image](https://user-images.githubusercontent.com/45383053/187387051-09f989e4-297d-49a3-b546-8f891364c36b.png)

### Java API client version 7.17.5 ### Java version 11 ### Elasticsearch Version 7.17.5 ### Problem description I got the error exceptions ``` Missing required property 'MultiTermVectorsOperation.doc' co.elastic.clients.util.MissingRequiredPropertyException: Missing required...

Area: Specification

### Java API client version 7.17.2 ### Java version 17.0.2 ### Elasticsearch Version 7.17.2 ### Problem description Per the documentation, the term suggester requires the search text to be set...

### Java API client version 8.2.2 ### Java version 7 ### Elasticsearch Version 8.2.2 ### Problem description Error when getting DataStreamsStatsResponse with a total_store_size_bytes value larger than int value Probably...

I am trying to implement a generic deep pagination function that takes a SearchRequest, creates a point-in-time and then paginates through all the values using [search_after](https://www.elastic.co/guide/en/elasticsearch/reference/current/paginate-search-results.html#search-after). This requires modifying the...

Category: Enhancement
tracking

I am trying to create a point-in-time (code is in Kotlin) ```kotlin client.openPointInTime { builder -> builder.index(index) .keepAlive { timeBuilder -> timeBuilder.time("5m") } } ``` As can be seen, I...

Category: Enhancement
tracking

### Java API client version 8.3.3 ### Java version 17 ### Elasticsearch Version 8.3.3 ### Problem description ``` new CreateIndexRequest.Builder(). .settings(s -> s .similarity( new SettingsSimilarity.Builder().lmj( new SettingsSimilarityLmj.Builder() .lambda(2) .build()...

### Description Hell team, I need to upgrade my ES version from 7.17 to 8.13. In version 7, I can use to_string to convert an es dsl query to a...

Category: Enhancement

### Java API client version 8.3.3 ### Java version 18 ### Elasticsearch Version 7.17, 8.3.3 ### Problem description ExecutePolicyResponse describes status as a required field but if ?wait_for_completion=false is used...