Ignacio Vera
Ignacio Vera
In LUCENE-9538:, it was added the possibility to detect polygon self-intersection in the Lucene tessellator to improve the usability and provide feedback to the clients. This ability has been already...
**Build scan:** https://gradle-enterprise.elastic.co/s/n4pgrfi6h5ygc/tests/:x-pack:plugin:yamlRestTest/org.elasticsearch.xpack.test.rest.XPackRestIT/test%20%7Bp0=transform%2Ftransforms_stats%2FTest%20get%20transform%20stats%7D **Reproduction line:** `./gradlew ':x-pack:plugin:yamlRestTest' --tests "org.elasticsearch.xpack.test.rest.XPackRestIT.test {p0=transform/transforms_stats/Test get transform stats}" -Dtests.seed=D90F36619AE332E4 -Dtests.locale=he-IL -Dtests.timezone=Asia/Brunei -Druntime.java=17` **Applicable branches:** main **Reproduces locally?:** No **Failure history:** https://gradle-enterprise.elastic.co/scans/tests?tests.container=org.elasticsearch.xpack.test.rest.XPackRestIT&tests.test=test%20%7Bp0%3Dtransform/transforms_stats/Test%20get%20transform%20stats%7D **Failure excerpt:** ``` java.lang.AssertionError:...
We are using lucene spatial3d library to represent the area covered by a H3 bin. Unfortunately the mathematics at the edges are slightly different and the only way to determine...
We are currently encoding three type of triangle in ShapeField: - POINT: all three coordinates are equal - LINE: two coordinates are equal - TRIANGLE: all coordinates are different Because...
One of the properties of global grid systems like h3 is that at a given resolution, any latitude / longitude pair can only belong to one h3 bin. This makes...
This PR proposes to add a new method to SortedDocValues that helps users to advance an iterator to the next document that contains a different term that the current document,...
Introduces two functional interfaces, `DocValuesVisitor` and `DocIdsVisitor` that are used in the PointTree API instead of using the IntersectVisitor. The IntersectVisitor is now extending those interfaces. #10659
Currently the High Level Rest Client supports bulks API to send documents encoded either in JSON or SMILE as stated in the [docs](https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/java-rest-high-document-bulk.html): ``` The Bulk API supports only documents...
Trying a `SearchMvtRequest` gives an error as we are trying to serialise the response to Json: ``` RestClient restClient = RestClient.builder(new HttpHost("localhost", 9200)).build()); Transport transport = new RestClientTransport(restClient, new JacksonJsonpMapper());...
### Description We were about to release Lucene 9.4.0 with an important performance regression. This regression was showing up in the benchmarks but obviously we missed reviewing them. The regression...