forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'es/main' into block_source_loader_ignor…
…e_above
- Loading branch information
Showing
665 changed files
with
8,823 additions
and
3,642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,6 @@ steps: | |
matrix: | ||
setup: | ||
BWC_VERSION: | ||
- 7.17.13 | ||
- 8.9.1 | ||
- 8.10.0 | ||
agents: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
pr: 113482 | ||
summary: The 'persian' analyzer has stemmer by default | ||
area: Analysis | ||
type: breaking | ||
issues: | ||
- 113050 | ||
breaking: | ||
title: The 'persian' analyzer has stemmer by default | ||
area: Analysis | ||
details: >- | ||
Lucene 10 has added a final stemming step to its PersianAnalyzer that Elasticsearch | ||
exposes as 'persian' analyzer. Existing indices will keep the old | ||
non-stemming behaviour while new indices will see the updated behaviour with | ||
added stemming. | ||
Users that wish to maintain the non-stemming behaviour need to define their | ||
own analyzer as outlined in | ||
https://www.elastic.co/guide/en/elasticsearch/reference/8.15/analysis-lang-analyzer.html#persian-analyzer. | ||
Users that wish to use the new stemming behaviour for existing indices will | ||
have to reindex their data. | ||
impact: >- | ||
Indexing with the 'persian' analyzer will produce slightly different tokens. | ||
Users should check if this impacts their search results. If they wish to | ||
maintain the legacy non-stemming behaviour they can define their own | ||
analyzer equivalent as explained in | ||
https://www.elastic.co/guide/en/elasticsearch/reference/8.15/analysis-lang-analyzer.html#persian-analyzer. | ||
notable: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pr: 113614 | ||
summary: The 'german2' stemmer is now an alias for the 'german' snowball stemmer | ||
area: Analysis | ||
type: breaking | ||
issues: [] | ||
breaking: | ||
title: The "german2" snowball stemmer is now an alias for the "german" stemmer | ||
area: Analysis | ||
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...) | ||
impact: >- | ||
Replace usages of "german2" with "german" in analysis configuration. Old | ||
indices that use the "german" stemmer should be reindexed if possible. | ||
notable: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pr: 114124 | ||
summary: The Korean dictionary for Nori has been updated | ||
area: Analysis | ||
type: breaking | ||
issues: [] | ||
breaking: | ||
title: The Korean dictionary for Nori has been updated | ||
area: Analysis | ||
details: >- | ||
Lucene 10 ships with an updated Korean dictionary (mecab-ko-dic-2.1.1). | ||
For details see https://github.com/apache/lucene/issues/11452. Users | ||
experiencing changes in search behaviour on existing data are advised to | ||
reindex. | ||
impact: >- | ||
The change is small and should generally provide better analysis results. | ||
Existing indices for full-text use cases should be reindexed though. | ||
notable: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
pr: 114146 | ||
summary: Snowball stemmers have been upgraded | ||
area: Analysis | ||
type: breaking | ||
issues: [] | ||
breaking: | ||
title: Snowball stemmers have been upgraded | ||
area: Analysis | ||
details: >- | ||
Lucene 10 ships with an upgrade of its Snowball stemmers. | ||
For details see https://github.com/apache/lucene/issues/13209. Users using | ||
Snowball stemmers that are experiencing changes in search behaviour on | ||
existing data are advised to reindex. | ||
impact: >- | ||
The upgrade should generally provide improved stemming results. Small changes | ||
in token analysis can lead to mismatches with previously index data, so | ||
existing indices using Snowball stemmers as part of their analysis chain | ||
should be reindexed. | ||
notable: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 114741 | ||
summary: Upgrade to Lucene 10 | ||
area: Search | ||
type: upgrade | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.