You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/changelog-bundles/9.0.0.yml
+20-19Lines changed: 20 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@ changelogs:
165
165
breaking:
166
166
area: Analysis
167
167
title: The "german2" snowball stemmer is now an alias for the "german" stemmer
168
-
details: "Lucene 10 has merged the improved \"german2\" snowball language stemmer with the \"german\" stemmer. For Elasticsearch, \"german2\" is now a deprecated alias for \"german\". This may results in slightly different tokens being generated for terms with umlaut substitution (like \"ue\" for \"ü\" etc...)"
168
+
details: 'Lucene 10 has merged the improved "german2" snowball language stemmer with the "german" stemmer. For Elasticsearch, "german2" is now a deprecated alias for "german". This may results in slightly different tokens being generated for terms with umlaut substitution (like "ue" for "ü" etc...)'
169
169
impact: Replace usages of "german2" with "german" in analysis configuration. Old indices that use the "german" stemmer should be reindexed if possible.
170
170
notable: false
171
171
essSettingChange: false
@@ -640,7 +640,7 @@ changelogs:
640
640
breaking:
641
641
area: Transform
642
642
title: Remove `data_frame_transforms` roles
643
-
details: '`data_frame_transforms_admin` and `data_frame_transforms_user` were deprecated in Elasticsearch 7 and are being removed in Elasticsearch 9. `data_frame_transforms_admin` is now `transform_admin`. `data_frame_transforms_user` is now `transform_user`. Users must call the `_update` API to replace the permissions on the Transform before the Transform can be started.'
643
+
details: "`data_frame_transforms_admin` and `data_frame_transforms_user` were deprecated in Elasticsearch 7 and are being removed in Elasticsearch 9. `data_frame_transforms_admin` is now `transform_admin`. `data_frame_transforms_user` is now `transform_user`. Users must call the `_update` API to replace the permissions on the Transform before the Transform can be started."
644
644
impact: "Transforms created with either the `data_frame_transforms_admin` or the `data_frame_transforms_user` role will fail to start. The Transform will remain in a `stopped` state, and its health will be red while displaying permission failures."
title: Add new experimental `rank_vectors` mapping for late-interaction second order ranking
1093
-
body: "Late-interaction models are powerful rerankers. While their size and overall cost doesn't lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali."
1092
+
title: rank_vectors field type is now available for late-interaction ranking
1093
+
body: |
1094
+
[`rank_vectors`](../reference/elasticsearch/mapping-reference/rank-vectors.md) is a new field type released as an experimental feature in Elasticsearch 9.0. It is designed to be used with dense vectors and allows for late-interaction second order ranking.
1095
+
1096
+
Late-interaction models are powerful rerankers. While their size and overall cost doesn’t lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
1094
1097
pr: 118804
1095
1098
- pr: 118823
1096
1099
summary: Fix attribute set equals
@@ -1922,16 +1925,14 @@ changelogs:
1922
1925
- 121185
1923
1926
highlight:
1924
1927
notable: true
1925
-
title: Enable LOOKUP JOIN in non-snapshot builds
1928
+
title: "ES|QL LOOKUP JOIN is now available in technical preview"
1926
1929
body: |-
1927
-
This effectively releases LOOKUP JOIN into tech preview. Docs will
1928
-
follow in a separate PR.
1929
-
1930
-
- Enable the lexing/grammar for LOOKUP JOIN in non-snapshot builds.
1931
-
- Remove the grammar for the unsupported `| JOIN ...` command (without `LOOKUP` as first keyword). The way the lexer modes work, otherwise we'd also have to enable `| JOIN ...` syntax on non-snapshot builds and would have to add additional validation to provide appropriate error messages.
1932
-
- Remove grammar for `LOOKUP JOIN index AS ...` because qualifiers are not yet supported. Otherwise we'd have to put in additional validation as well to prevent such queries.
1930
+
[LOOKUP JOIN](../reference/query-languages/esql/esql-commands.md) is now available in technical preview. LOOKUP JOIN combines data from your ES|QL queries with matching records from a lookup index, enabling you to:
1933
1931
1934
-
Also fix https://github.com/elastic/elasticsearch/issues/121185
1932
+
- Enrich your search results with reference data
1933
+
- Speed up root-cause analysis and security investigations
1934
+
- Join data across indices without complex queries
1935
+
- Reduce operational overhead when correlating events
1935
1936
pr: 121193
1936
1937
- pr: 121196
1937
1938
summary: Fix geoip databases index access after system feature migration
@@ -1944,7 +1945,7 @@ changelogs:
1944
1945
type: bug
1945
1946
issues: []
1946
1947
- pr: 121325
1947
-
summary: '`ReindexDataStreamIndex` bug in assertion caused by reference equality'
1948
+
summary: "`ReindexDataStreamIndex` bug in assertion caused by reference equality"
1948
1949
area: Data streams
1949
1950
type: bug
1950
1951
issues: []
@@ -2342,8 +2343,8 @@ changelogs:
2342
2343
issues: []
2343
2344
highlight:
2344
2345
notable: true
2345
-
title: Release semantic_text as a GA feature
2346
-
body: semantic_text is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
2346
+
title: The semantic_text field type is now GA
2347
+
body: "[`semantic_text`](../reference/elasticsearch/mapping-reference/semantic-text.md) is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time."
Copy file name to clipboardExpand all lines: docs/release-notes/index.md
+11-17Lines changed: 11 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,29 +90,23 @@ Vector Search:
90
90
91
91
### Highlights [elasticsearch-900-highlights]
92
92
93
-
::::{dropdown} Add new experimental `rank_vectors` mapping for late-interaction second order ranking
94
-
Late-interaction models are powerful rerankers. While their size and overall cost doesn't lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
93
+
::::{dropdown} rank_vectors field type is now available for late-interaction ranking
94
+
[`rank_vectors`](../reference/elasticsearch/mapping-reference/rank-vectors.md) is a new field type released as an experimental feature in Elasticsearch 9.0. It is designed to be used with dense vectors and allows for late-interaction second order ranking.
95
95
96
-
For more information, check [PR #118804](https://github.com/elastic/elasticsearch/pull/118804).
96
+
Late-interaction models are powerful rerankers. While their size and overall cost doesn’t lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
97
97
::::
98
98
99
-
::::{dropdown} Enable LOOKUP JOIN in non-snapshot builds
100
-
This effectively releases LOOKUP JOIN into tech preview. Docs will
101
-
follow in a separate PR.
99
+
::::{dropdown} ES|QL LOOKUP JOIN is now available in technical preview
100
+
[LOOKUP JOIN](../reference/query-languages/esql/esql-commands.md) is now available in technical preview. LOOKUP JOIN combines data from your ES|QL queries with matching records from a lookup index, enabling you to:
102
101
103
-
- Enable the lexing/grammar for LOOKUP JOIN in non-snapshot builds.
104
-
- Remove the grammar for the unsupported `| JOIN ...` command (without `LOOKUP` as first keyword). The way the lexer modes work, otherwise we'd also have to enable `| JOIN ...` syntax on non-snapshot builds and would have to add additional validation to provide appropriate error messages.
105
-
- Remove grammar for `LOOKUP JOIN index AS ...` because qualifiers are not yet supported. Otherwise we'd have to put in additional validation as well to prevent such queries.
106
-
107
-
Also fix https://github.com/elastic/elasticsearch/issues/121185
108
-
109
-
For more information, check [PR #121193](https://github.com/elastic/elasticsearch/pull/121193).
102
+
- Enrich your search results with reference data
103
+
- Speed up root-cause analysis and security investigations
104
+
- Join data across indices without complex queries
105
+
- Reduce operational overhead when correlating events
110
106
::::
111
107
112
-
::::{dropdown} Release semantic_text as a GA feature
113
-
semantic_text is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
114
-
115
-
For more information, check [PR #124669](https://github.com/elastic/elasticsearch/pull/124669).
108
+
::::{dropdown} The semantic_text field type is now GA
109
+
[`semantic_text`](../reference/elasticsearch/mapping-reference/semantic-text.md) is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
116
110
::::
117
111
118
112
### Features and enhancements [elasticsearch-900-features-enhancements]
0 commit comments