Skip to content

Commit 3a3beb1

Browse files
committed
Merge branch 'main' into failure-store-naming-scheme
2 parents 6fe1458 + a0ce742 commit 3a3beb1

File tree

59 files changed

+2199
-294
lines changed

Some content is hidden

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

59 files changed

+2199
-294
lines changed

build-tools-internal/src/main/resources/changelog-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@
279279
"compatibilityChangeArea": {
280280
"type": "string",
281281
"enum": [
282+
"Aggregations",
282283
"Analysis",
283284
"Authorization",
284285
"Cluster and node setting",

docs/changelog/118484.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pr: 118484
2+
summary: Remove date histogram boolean support
3+
area: Aggregations
4+
type: breaking
5+
issues: []
6+
breaking:
7+
title: Remove date histogram boolean support
8+
area: Aggregations
9+
details: Elasticsearch no longer allows running Date Histogram aggregations
10+
over boolean fields. Instead, use Terms aggregation for boolean
11+
fields.
12+
impact: We expect the impact to be minimal, as this never produced good
13+
results, and has been deprecated for years.
14+
notable: false

docs/changelog/118617.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 118617
2+
summary: Add support for `sparse_vector` queries against `semantic_text` fields
3+
area: "Search"
4+
type: enhancement
5+
issues: []

docs/changelog/118681.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 118681
2+
summary: '`ConnectTransportException` returns retryable BAD_GATEWAY'
3+
area: Network
4+
type: enhancement
5+
issues:
6+
- 118320

docs/changelog/118697.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 118697
2+
summary: Esql implicit casting for date nanos
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 118476

docs/changelog/118837.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 118837
2+
summary: Add missing timeouts to rest-api-spec ILM APIs
3+
area: "ILM+SLM"
4+
type: bug
5+
issues: []

docs/changelog/118844.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 118844
2+
summary: Add missing timeouts to rest-api-spec ingest APIs
3+
area: Ingest Node
4+
type: bug
5+
issues: []

docs/reference/ilm/example-index-lifecycle-policy.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ and retention requirements.
2424
You want to send log files to an {es} cluster so you can visualize and analyze
2525
the data. This data has the following retention requirements:
2626

27-
* When the write index reaches 50GB or is 30 days old, roll over to a new index.
27+
* When the primary shard size of the write index reaches 50GB or the index is 30 days old, roll over to a new index.
2828
* After rollover, keep indices in the hot data tier for 30 days.
2929
* 30 days after rollover:
3030
** Move indices to the warm data tier.
@@ -84,7 +84,7 @@ To save the `logs@lifecycle` policy as a new policy in {kib}:
8484
. On the **Edit policy logs** page, toggle **Save as new policy**, and then provide a new name for the policy, for example, `logs-custom`.
8585

8686
The `logs@lifecycle` policy uses the recommended rollover defaults: Start writing to a new
87-
index when the current write index reaches 50GB or becomes 30 days old.
87+
index when the primary shard size of the current write index reaches 50GB or the index becomes 30 days old.
8888

8989
To view or change the rollover settings, click **Advanced settings** for the hot
9090
phase. Then disable **Use recommended defaults** to display the rollover
1.15 MB
Loading

docs/reference/ml/trained-models/apis/start-trained-model-deployment.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ normal priority deployments.
138138
Controls how many inference requests are allowed in the queue at a time.
139139
Every machine learning node in the cluster where the model can be allocated
140140
has a queue of this size; when the number of requests exceeds the total value,
141-
new requests are rejected with a 429 error. Defaults to 1024. Max allowed value
142-
is 1000000.
141+
new requests are rejected with a 429 error. Defaults to 10000. Max allowed value
142+
is 100000.
143143

144144
`threads_per_allocation`::
145145
(Optional, integer)
@@ -173,7 +173,7 @@ The API returns the following results:
173173
"model_bytes": 265632637,
174174
"threads_per_allocation" : 1,
175175
"number_of_allocations" : 1,
176-
"queue_capacity" : 1024,
176+
"queue_capacity" : 10000,
177177
"priority": "normal"
178178
},
179179
"routing_table": {
@@ -229,4 +229,4 @@ POST _ml/trained_models/my_model/deployment/_start?deployment_id=my_model_for_se
229229
}
230230
}
231231
--------------------------------------------------
232-
// TEST[skip:TBD]
232+
// TEST[skip:TBD]

0 commit comments

Comments
 (0)