Skip to content

Commit 8d21b4d

Browse files
authored
Merge branch 'main' into allow-fc-cps
2 parents 46e50b6 + c751961 commit 8d21b4d

File tree

91 files changed

+3122
-917
lines changed

Some content is hidden

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

91 files changed

+3122
-917
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/136065.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 136065
2+
summary: Nightly maintenance for anomaly detection results indices to keep to manageable size.
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/136889.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 136889
2+
summary: Remove early phase failure in batched
3+
area: Search
4+
type: bug
5+
issues:
6+
- 134151

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/elasticsearch/configuration-reference/machine-learning-settings.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ $$$xpack.ml.max_open_jobs$$$
8686
`xpack.ml.nightly_maintenance_requests_per_second`
8787
: ([Dynamic](docs-content://deploy-manage/stack-settings.md#dynamic-cluster-setting)) The rate at which the nightly maintenance task deletes expired model snapshots and results. The setting is a proxy to the [`requests_per_second`](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-delete-by-query) parameter used in the delete by query requests and controls throttling. When the {{operator-feature}} is enabled, this setting can be updated only by operator users. Valid values must be greater than `0.0` or equal to `-1.0`, where `-1.0` means a default value is used. Defaults to `-1.0`
8888

89+
`xpack.ml.results_index_rollover_max_size`
90+
: ([Dynamic](docs-content://deploy-manage/stack-settings.md#dynamic-cluster-setting)) The maximum size the anomaly detection results indices can reach before being rolled over by the nightly maintenance task. When the {{operator-feature}} is enabled, this setting can be updated only by operator users. Valid values must be greater than or equal to `-1B`. A value of `-1B` means the indices will never be rolled over. A value of `0B` means the indices will always be rolled over, regardless of size. Defaults to `50GB`.
91+
8992
`xpack.ml.node_concurrent_job_allocations`
9093
: ([Dynamic](docs-content://deploy-manage/stack-settings.md#dynamic-cluster-setting)) The maximum number of jobs that can concurrently be in the `opening` state on each node. Typically, jobs spend a small amount of time in this state before they move to `open` state. Jobs that must restore large models when they are opening spend more time in the `opening` state. When the {{operator-feature}} is enabled, this setting can be updated only by operator users. Defaults to `2`.
9194

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

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

0 commit comments

Comments
 (0)