Peter-Josef Meisch

Results 144 comments of Peter-Josef Meisch

The `org.springframework.data.elasticsearch.client.ClientConfigurationBuilder` has an import to `WebClient` needed for this method: ``` public ClientConfiguration.TerminalClientConfigurationBuilder withWebClientConfigurer(Function webClientConfigurer) ``` I have a project that uses `spring-boot-starter-web` I have no problems with this...

I just had a look at the code of the `RestHighLevelClient` in version 7.15.1. There the tasks API is implemented in an own `TasksClient`(https://github.com/elastic/elasticsearch/blob/master/client/rest-high-level/src/main/java/org/elasticsearch/client/TasksClient.java). Therefore in Spring Data Elasticsearch this...

No. I'm currently working on a different issue. This will probably be one of the next issues to address. Keep in mind that Spring Data Elasticsearch is a community maintained...

The Elasticsearch `RestHighLevelClient` does not yet (version 7.12.1) support the calls to open or close point in time. This was just recently merged into Elasticsearch master (https://github.com/elastic/elasticsearch/issues/70593). We have to...

7.14 is not released yet. When it will be, I don't know, only Elasticsearch knows that.

I am currently working on integrating the new Elasticsearch client (which is not released yet from Elasticsearch ) as an alternative to the current `RestHighLevelClient`. This will be the main...

Note: legacy index template API is deprecated as of Elasticsearch 7.13.0

What kind of serialization are you talking about? Spring Data Elasticsearch about? The `MappingElasticsearchConverter` in Spring Data Elasticsearch does not send `null` properties to Elasticsearch. Please provide a minimal runnable...

I have just tested this with the current version: Using this entity: ```java public class Foo { @Id private String id; @Nullable @Field(type = FieldType.Object) private Map map1; @Nullable @Field(type...

The question is: which criteria defines that a property is not null, initialized and empty? This would have to work with Collections, but probably with String as well? And it...