Laura Trotta

Results 80 comments of Laura Trotta

Hello @mdgilene, is this still an issue for you or did @fpeter8's solution work?

Hello! This is the idiomatic way of creating a role mapping with the java client: ``` esClient.security().putRoleMapping(rm -> rm .name("my_role_mapping") .enabled(true) .roles("tenant") .rules(ru -> ru .all(List.of( RoleMappingRule.of( rmr -> rmr...

@kstec thanks for checking, yes that commit fixes the issue!

Hello, thank you for the report! Not sure why your request is not returning results, here's how I wrote it with the java client: ``` SearchResponse res = esClient.search(s ->...

Hello, is this still an issue? Otherwise I'll close this soon.

Hello, thank you for the report! Definitely a bug, we'll investigate this.

Hello, thanks for the report and sorry for the delay. Yes the field is missing from the [API specification](https://github.com/elastic/elasticsearch-specification) used to produce the Java code, we'll add it there and...

Hello, I'd like to try and reproduce this, I have used the BulkIngester recently with an 80K rows document and nothing of sort happened. Could you provide the code for...