Skip to content

Commit 98614eb

Browse files
committed
Merge branch 'main' into lucene_snapshot
2 parents 604ecac + 162dce5 commit 98614eb

File tree

304 files changed

+8144
-4458
lines changed

Some content is hidden

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

304 files changed

+8144
-4458
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/114168.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114168
2+
summary: Add a query rules tester API call
3+
area: Relevance
4+
type: enhancement
5+
issues: []

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/114549.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114549
2+
summary: Send mid-stream errors to users
3+
area: Machine Learning
4+
type: bug
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/114715.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114715
2+
summary: Ignore unrecognized openai sse fields
3+
area: Machine Learning
4+
type: bug
5+
issues: []

0 commit comments

Comments
 (0)