123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- [[release-highlights]]
- == What's new in {minor-version}
- coming::[{minor-version}]
- Here are the highlights of what's new and improved in {es} {minor-version}!
- ifeval::["{release-state}"!="unreleased"]
- For detailed information about this release, see the <<es-release-notes>> and
- <<breaking-changes>>.
- // Add previous release to the list
- Other versions:
- {ref-bare}/8.18/release-highlights.html[8.18]
- | {ref-bare}/8.17/release-highlights.html[8.17]
- | {ref-bare}/8.16/release-highlights.html[8.16]
- | {ref-bare}/8.15/release-highlights.html[8.15]
- | {ref-bare}/8.14/release-highlights.html[8.14]
- | {ref-bare}/8.13/release-highlights.html[8.13]
- | {ref-bare}/8.12/release-highlights.html[8.12]
- | {ref-bare}/8.11/release-highlights.html[8.11]
- | {ref-bare}/8.10/release-highlights.html[8.10]
- | {ref-bare}/8.9/release-highlights.html[8.9]
- | {ref-bare}/8.8/release-highlights.html[8.8]
- | {ref-bare}/8.7/release-highlights.html[8.7]
- | {ref-bare}/8.6/release-highlights.html[8.6]
- | {ref-bare}/8.5/release-highlights.html[8.5]
- | {ref-bare}/8.4/release-highlights.html[8.4]
- | {ref-bare}/8.3/release-highlights.html[8.3]
- | {ref-bare}/8.2/release-highlights.html[8.2]
- | {ref-bare}/8.1/release-highlights.html[8.1]
- | {ref-bare}/8.0/release-highlights.html[8.0]
- endif::[]
- // tag::notable-highlights[]
- [discrete]
- [[upgrade_repository_s3_to_aws_sdk_v2]]
- === Upgrade `repository-s3` to AWS SDK v2
- In earlier versions of {es} the `repository-s3` plugin was based on the AWS SDK v1. AWS will withdraw support for this SDK before the end of the life of {es} {minor-version} so we have migrated this plugin to the newer AWS SDK v2.
- The two SDKs are not quite compatible, so please check the breaking changes documentation and test the new version thoroughly before upgrading any production workloads.
- {es-pull}126843[#126843]
- [discrete]
- [[add_ability_to_redirect_ingestion_failures_on_data_streams_to_failure_store]]
- === Add ability to redirect ingestion failures on data streams to a failure store
- Documents that encountered ingest pipeline failures or mapping conflicts
- would previously be returned to the client as errors in the bulk and
- index operations. Many client applications are not equipped to respond
- to these failures. This leads to the failed documents often being
- dropped by the client which cannot hold the broken documents
- indefinitely. In many end user workloads, these failed documents
- represent events that could be critical signals for observability or
- security use cases.
- To help mitigate this problem, data streams can now maintain a "failure
- store" which is used to accept and hold documents that fail to be
- ingested due to preventable configuration errors. The data stream's
- failure store operates like a separate set of backing indices with their
- own mappings and access patterns that allow Elasticsearch to accept
- documents that would otherwise be rejected due to unhandled ingest
- pipeline exceptions or mapping conflicts.
- Users can enable redirection of ingest failures to the failure store on
- new data streams by specifying it in the new `data_stream_options` field
- inside of a component or index template:
- [source,yaml]
- ----
- PUT _index_template/my-template
- {
- "index_patterns": ["logs-test-*"],
- "data_stream": {},
- "template": {
- "data_stream_options": {
- "failure_store": {
- "enabled": true
- }
- }
- }
- }'
- ----
- Existing data streams can be configured with the new data stream
- `_options` endpoint:
- [source,yaml]
- ----
- PUT _data_stream/logs-test-apache/_options
- {
- "failure_store": {
- "enabled": "true"
- }
- }
- ----
- When redirection is enabled, any ingestion related failures will be
- captured in the failure store if the cluster is able to, along with the
- timestamp that the failure occurred, details about the error
- encountered, and the document that could not be ingested. Since failure
- stores are a kind of Elasticsearch index, we can search the data stream
- for the failures that it has collected. The failures are not shown by
- default as they are stored in different indices than the normal data
- stream data. In order to retrieve the failures, we use the `_search` API
- along with a new bit of index pattern syntax, the `::` selector.
- [source,yaml]
- ----
- POST logs-test-apache::failures/_search
- ----
- This index syntax informs the search operation to target the indices in
- its failure store instead of its backing indices. It can be mixed in a
- number of ways with other index patterns to include their failure store
- indices in the search operation:
- [source,yaml]
- ----
- POST logs-*::failures/_search
- POST logs-*,logs-*::failures/_search
- POST *::failures/_search
- POST _query
- {
- "query": "FROM my_data_stream*::failures"
- }
- ----
- {es-pull}126973[#126973]
- [discrete]
- [[upgrade_to_lucene_9_12_2]]
- === Upgrade to lucene 9.12.2
- * Reduce NeighborArray on-heap memory during HNSW graph building
- * Fix IndexSortSortedNumericDocValuesRangeQuery for integer sorting
- * ValueSource.fromDoubleValuesSource(dvs).getSortField() would throw errors when used if the DoubleValuesSource needed scores
- * Disable connectedComponents logic in HNSW graph building.
- {es-pull}129555[#129555]
- [discrete]
- [[es_ql_cross_cluster_querying_generally_available]]
- === ES|QL cross-cluster querying is now generally available
- The ES|QL Cross-Cluster querying feature has been in technical preview since 8.13.
- As of releases 8.19.0 and 9.1.0 this is now generally available.
- This feature allows you to run ES|QL queries across multiple clusters.
- {es-pull}130034[#130034]
- [discrete]
- [[mark_token_pruning_for_sparse_vector_as_ga]]
- === Mark Token Pruning for Sparse Vector as GA
- Token pruning for sparse_vector queries has been live since 8.13 as tech preview.
- As of 8.19.0 and 9.1.0, this is now generally available.
- {es-pull}130212[#130212]
- // end::notable-highlights[]
|