Skip to content

Commit 532453e

Browse files
Merge f77611c into openjdk23-bundle
2 parents b68d4b2 + f77611c commit 532453e

File tree

276 files changed

+7699
-1998
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+7699
-1998
lines changed

docs/changelog/112929.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 112929
2+
summary: "ES|QL: Add support for cached strings in plan serialization"
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/112938.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
pr: 112938
2+
summary: Enhance SORT push-down to Lucene to cover references to fields and ST_DISTANCE function
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 109973
7+
highlight:
8+
title: Enhance SORT push-down to Lucene to cover references to fields and ST_DISTANCE function
9+
body: |-
10+
The most used and likely most valuable geospatial search query in Elasticsearch is the sorted proximity search,
11+
finding items within a certain distance of a point of interest and sorting the results by distance.
12+
This has been possible in ES|QL since 8.15.0, but the sorting was done in-memory, not pushed down to Lucene.
13+
Now the sorting is pushed down to Lucene, which results in a significant performance improvement.
14+
15+
Queries that perform both filtering and sorting on distance are supported. For example:
16+
17+
[source,esql]
18+
----
19+
FROM test
20+
| EVAL distance = ST_DISTANCE(location, TO_GEOPOINT("POINT(37.7749, -122.4194)"))
21+
| WHERE distance < 1000000
22+
| SORT distance ASC, name DESC
23+
| LIMIT 10
24+
----
25+
26+
In addition, the support for sorting on EVAL expressions has been extended to cover references to fields:
27+
28+
[source,esql]
29+
----
30+
FROM test
31+
| EVAL ref = field
32+
| SORT ref ASC
33+
| LIMIT 10
34+
----
35+
notable: false

docs/changelog/114303.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114303
2+
summary: Fix TDigestState.read CB leaks
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 114194

docs/changelog/114309.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114309
2+
summary: Upgrade to AWS SDK v2
3+
area: Machine Learning
4+
type: enhancement
5+
issues:
6+
- 110590

docs/changelog/114411.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114411
2+
summary: "ESQL: Push down filters even in case of renames in Evals"
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/114429.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114429
2+
summary: Add chunking settings configuration to `ElasticsearchService/ELSER`
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114464.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114464
2+
summary: Stream Azure Completion
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114512.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114512
2+
summary: Ensure clean thread context in `MasterService`
3+
area: Cluster Coordination
4+
type: bug
5+
issues: []

docs/changelog/114527.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114527
2+
summary: Verify Maxmind database types in the geoip processor
3+
area: Ingest Node
4+
type: enhancement
5+
issues: []

docs/changelog/114533.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114533
2+
summary: Fix dim validation for bit `element_type`
3+
area: Vector Search
4+
type: bug
5+
issues: []

0 commit comments

Comments
 (0)