Skip to content

Commit 23bd11f

Browse files
authored
Merge branch 'main' into histogram-coerce
2 parents 3827272 + fafb162 commit 23bd11f

File tree

204 files changed

+8545
-1444
lines changed

Some content is hidden

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

204 files changed

+8545
-1444
lines changed

docs/changelog/134708.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 134708
2+
summary: Default [semantic_text](/reference/elasticsearch/mapping-reference/semantic-text.md) fields to use [ELSER on EIS](docs-content://explore-analyze/elastic-inference/eis.md#elser-on-eis) when available
3+
area: Mapping
4+
type: enhancement
5+
issues: []

docs/changelog/136890.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 136890
2+
summary: "Cat API: added endpoint for Circuit Breakers"
3+
area: Infra/REST API
4+
type: enhancement
5+
issues: []

docs/changelog/137025.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 137025
2+
summary: Fix `ReplaceAliasingEvalWithProject` in case of shadowing
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 137019

docs/changelog/137047.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137047
2+
summary: Reject invalid `reverse_nested` aggs
3+
area: Aggregations
4+
type: bug
5+
issues: []

docs/changelog/137219.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137219
2+
summary: Perform query field validation for rerank task type
3+
area: Machine Learning
4+
type: bug
5+
issues: []

docs/changelog/137275.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 137275
2+
summary: "Reindex-from-remote: Fail on manual slicing param"
3+
area: Indices APIs
4+
type: bug
5+
issues:
6+
- 136269

docs/changelog/137297.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137297
2+
summary: Fixed inconsistency in the `isSyntheticSourceEnabled` flag
3+
area: Mapping
4+
type: bug
5+
issues: []

docs/changelog/137306.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137306
2+
summary: Shard started reroute high priority
3+
area: Allocation
4+
type: enhancement
5+
issues: []

docs/changelog/137325.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137325
2+
summary: "Enable `_otlp` usage with `create_doc`, `auto_configure` privileges"
3+
area: TSDB
4+
type: "bug"
5+
issues: []

docs/reference/elasticsearch/mapping-reference/semantic-text.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,16 @@ When updating documents that contain `semantic_text` fields, it’s important to
437437

438438
If you want to avoid unnecessary inference and keep existing embeddings:
439439

440-
* Use **partial updates through the Bulk API**.
441-
* Omit any `semantic_text` fields that did not change from the `doc` object in your request.
440+
* Use **partial updates through the Bulk API**.
441+
* Omit any `semantic_text` fields that did not change from the `doc` object in your request.
442+
443+
### Scripted updates
444+
445+
For indices containing `semantic_text` fields, updates that use scripts have the
446+
following behavior:
447+
448+
-**Supported:** [Update API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-update)
449+
-**Not supported:** [Bulk API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-bulk-1). Scripted updates will fail even if the script targets non-`semantic_text` fields.
442450

443451
## Returning semantic field embeddings in `_source`
444452

@@ -578,18 +586,6 @@ PUT my-index-000004
578586
```
579587
% TEST[skip:Requires inference endpoint]
580588

581-
## Updates to `semantic_text` fields [update-script]
582-
583-
For indices containing `semantic_text` fields, updates that use scripts have the
584-
following behavior:
585-
586-
* Are supported through
587-
the [Update API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-update).
588-
* Are not supported through
589-
the [Bulk API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-bulk-1)
590-
and will fail. Even if the script targets non-`semantic_text` fields, the
591-
update will fail when the index contains a `semantic_text` field.
592-
593589
## `copy_to` and multi-fields support [copy-to-support]
594590

595591
The semantic_text field type can serve as the target

0 commit comments

Comments
 (0)