Skip to content

Commit 06a3b5d

Browse files
committed
Merge remote-tracking branch 'origin/main' into ES-9777_support_batch_deletions_in_azure
2 parents b08d6af + 6a6b707 commit 06a3b5d

File tree

426 files changed

+9383
-6686
lines changed

Some content is hidden

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

426 files changed

+9383
-6686
lines changed

docs/changelog/113237.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 113237
2+
summary: Retry throttled snapshot deletions
3+
area: Snapshot/Restore
4+
type: bug
5+
issues: []

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

Lines changed: 0 additions & 5 deletions
This file was deleted.

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114750
2+
summary: Create an ml node inference endpoint referencing an existing model
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/114836.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114836
2+
summary: Support multi-valued fields in compute engine for ST_DISTANCE
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 112910

0 commit comments

Comments
 (0)