Skip to content

Commit e9ef538

Browse files
Merge 5e59ab5 into openjdk23-bundle
2 parents 3a6d33e + 5e59ab5 commit e9ef538

File tree

399 files changed

+8343
-5111
lines changed

Some content is hidden

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

399 files changed

+8343
-5111
lines changed

docs/changelog/113735.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
pr: 113735
2+
summary: "ESQL: Introduce per agg filter"
3+
area: ES|QL
4+
type: feature
5+
issues: []
6+
highlight:
7+
title: "ESQL: Introduce per agg filter"
8+
body: |-
9+
Add support for aggregation scoped filters that work dynamically on the
10+
data in each group.
11+
12+
[source,esql]
13+
----
14+
| STATS success = COUNT(*) WHERE 200 <= code AND code < 300,
15+
redirect = COUNT(*) WHERE 300 <= code AND code < 400,
16+
client_err = COUNT(*) WHERE 400 <= code AND code < 500,
17+
server_err = COUNT(*) WHERE 500 <= code AND code < 600,
18+
total_count = COUNT(*)
19+
----
20+
21+
Implementation wise, the base AggregateFunction has been extended to
22+
allow a filter to be passed on. This is required to incorporate the
23+
filter as part of the aggregate equality/identity which would fail with
24+
the filter as an external component.
25+
As part of the process, the serialization for the existing aggregations
26+
had to be fixed so AggregateFunction implementations so that it
27+
delegates to their parent first.
28+
notable: true

docs/changelog/114407.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114407
2+
summary: Fix synthetic source handling for `bit` type in `dense_vector` field
3+
area: Search
4+
type: bug
5+
issues:
6+
- 114402

docs/changelog/114439.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114439
2+
summary: Adding new bbq index types behind a feature flag
3+
area: Vector Search
4+
type: feature
5+
issues: []

docs/changelog/114482.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114482
2+
summary: Remove snapshot build restriction for match and qstr functions
3+
area: ES|QL
4+
type: feature
5+
issues: []

docs/changelog/114596.yaml

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

docs/changelog/114636.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114636
2+
summary: Dynamically get of num allocations
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114683.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114683
2+
summary: Default inference endpoint for the multilingual-e5-small model
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114719.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114719
2+
summary: Wait for allocation on scale up
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114732.yaml

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

docs/changelog/114848.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114848
2+
summary: "ESQL: Fix grammar changes around per agg filtering"
3+
area: ES|QL
4+
type: bug
5+
issues: []

0 commit comments

Comments
 (0)