Skip to content

Commit 70ed46d

Browse files
authored
Merge branch 'main' into reindex/add-metrics
2 parents 6566a55 + e8a9eb1 commit 70ed46d

File tree

52 files changed

+1678
-620
lines changed

Some content is hidden

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

52 files changed

+1678
-620
lines changed

.buildkite/pipelines/periodic-packaging.template.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ steps:
1818
- rocky-9
1919
- rhel-8
2020
- rhel-9
21+
- rhel-10
2122
- almalinux-8
2223
- almalinux-9
2324
agents:

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ steps:
1919
- rocky-9
2020
- rhel-8
2121
- rhel-9
22+
- rhel-10
2223
- almalinux-8
2324
- almalinux-9
2425
agents:

.buildkite/pipelines/periodic-platform-support.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ steps:
1818
- rocky-9
1919
- rhel-8
2020
- rhel-9
21+
- rhel-10
2122
- almalinux-8
2223
- almalinux-9
2324
agents:

.buildkite/pipelines/pull-request/packaging-tests-unix.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ steps:
2121
- rocky-9
2222
- rhel-8
2323
- rhel-9
24+
- rhel-10
2425
- almalinux-8
2526
- almalinux-9
2627
PACKAGING_TASK:

docs/changelog/137274.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137274
2+
summary: Use a new synthetic `_id` format for time-series datastreams
3+
area: TSDB
4+
type: enhancement
5+
issues: []

docs/changelog/137567.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137567
2+
summary: '`TransportGetBasicStatusAction` runs on local'
3+
area: Distributed
4+
type: enhancement
5+
issues: []

docs/reference/query-languages/esql/_snippets/commands/layout/change_point.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```yaml {applies_to}
2-
serverless: preview
3-
stack: preview 9.1.0
2+
serverless: ga
3+
stack: preview 9.1.0, ga 9.2.0
44
```
55
66
:::{note}

docs/reference/query-languages/esql/_snippets/lists/processing-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
* [`CHANGE_POINT`](/reference/query-languages/esql/commands/change-point.md) {applies_to}`stack: preview` {applies_to}`serverless: preview`
1+
* [`CHANGE_POINT`](/reference/query-languages/esql/commands/change-point.md)
22
* [`COMPLETION`](/reference/query-languages/esql/commands/completion.md) {applies_to}`stack: preview` {applies_to}`serverless: preview`
33
* [`DISSECT`](/reference/query-languages/esql/commands/dissect.md)
44
* [`DROP`](/reference/query-languages/esql/commands/drop.md)

modules/data-streams/src/internalClusterTest/java/org/elasticsearch/datastreams/TSDBSyntheticIdsIT.java

Lines changed: 259 additions & 68 deletions
Large diffs are not rendered by default.

muted-tests.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,9 +435,6 @@ tests:
435435
- class: org.elasticsearch.readiness.ReadinessClusterIT
436436
method: testReadinessDuringRestartsNormalOrder
437437
issue: https://github.com/elastic/elasticsearch/issues/136955
438-
- class: org.elasticsearch.xpack.security.CoreWithSecurityClientYamlTestSuiteIT
439-
method: test {yaml=indices.validate_query/20_query_string/validate_query with query_string parameters}
440-
issue: https://github.com/elastic/elasticsearch/issues/137391
441438
- class: org.elasticsearch.smoketest.SmokeTestIngestWithAllDepsClientYamlTestSuiteIT
442439
method: test {yaml=ingest/100_sampling_with_reroute/Test get sample with multiple reroutes}
443440
issue: https://github.com/elastic/elasticsearch/issues/137457
@@ -457,6 +454,22 @@ tests:
457454
- class: org.elasticsearch.action.IndicesRequestIT
458455
method: testIndicesStats
459456
issue: https://github.com/elastic/elasticsearch/issues/137594
457+
- class: org.elasticsearch.xpack.esql.vector.VectorSimilarityFunctionsIT
458+
method: testTopNSimilarityBetweenConstantVectorAndField {functionName=v_l2_norm
459+
similarityFunction=org.elasticsearch.xpack.esql.expression.function.vector.L2Norm$1@5b068087 elementType=byte}
460+
issue: https://github.com/elastic/elasticsearch/issues/137625
461+
- class: org.elasticsearch.xpack.inference.integration.CCMStorageServiceIT
462+
method: testGet_ThrowsResourceNotFoundException_WhenCCMIndexDoesNotExist
463+
issue: https://github.com/elastic/elasticsearch/issues/137627
464+
- class: org.elasticsearch.xpack.inference.integration.CCMStorageServiceIT
465+
method: testGet_ThrowsResourceNotFoundException_WhenCCMConfigurationDocumentDoesNotExist
466+
issue: https://github.com/elastic/elasticsearch/issues/137628
467+
- class: org.elasticsearch.xpack.inference.integration.CCMStorageServiceIT
468+
method: testGetCCMModel_ThrowsException_WhenStoredModelIsCorrupted
469+
issue: https://github.com/elastic/elasticsearch/issues/137629
470+
- class: org.elasticsearch.xpack.inference.integration.CCMStorageServiceIT
471+
method: testStoreAndGetCCMModel
472+
issue: https://github.com/elastic/elasticsearch/issues/137630
460473

461474
# Examples:
462475
#

0 commit comments

Comments
 (0)