Skip to content

Commit

Permalink
Merge remote-tracking branch 'es/main' into SyntheticSourceLicenseSer…
Browse files Browse the repository at this point in the history
…viceTests
  • Loading branch information
martijnvg committed Dec 6, 2024
2 parents 9bab586 + 4f030ef commit 02db93f
Show file tree
Hide file tree
Showing 69 changed files with 2,889 additions and 172 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/117657.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117657
summary: Ignore cancellation exceptions
area: ES|QL
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/117939.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117939
summary: Adding default endpoint for Elastic Rerank
area: Machine Learning
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/118027.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 118027
summary: Esql compare nanos and millis
area: ES|QL
type: enhancement
issues:
- 116281
36 changes: 36 additions & 0 deletions docs/reference/esql/functions/kibana/definition/equals.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions docs/reference/esql/functions/kibana/definition/greater_than.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions docs/reference/esql/functions/kibana/definition/less_than.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions docs/reference/esql/functions/kibana/definition/not_equals.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/reference/esql/functions/types/equals.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/reference/esql/functions/types/greater_than.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/reference/esql/functions/types/less_than.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/reference/esql/functions/types/not_equals.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.synonym.SynonymFilter;
import org.apache.lucene.analysis.synonym.SynonymMap;
import org.elasticsearch.common.logging.DeprecationCategory;
import org.elasticsearch.common.logging.DeprecationLogger;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;
Expand Down Expand Up @@ -152,15 +151,6 @@ public static SynonymsSource fromSettings(Settings settings) {
super(name, settings);
this.settings = settings;

if (settings.get("ignore_case") != null) {
DEPRECATION_LOGGER.warn(
DeprecationCategory.ANALYSIS,
"synonym_ignore_case_option",
"The ignore_case option on the synonym_graph filter is deprecated. "
+ "Instead, insert a lowercase filter in the filter chain before the synonym_graph filter."
);
}

this.synonymsSource = SynonymsSource.fromSettings(settings);
this.expand = settings.getAsBoolean("expand", true);
this.format = settings.get("format", "");
Expand Down
9 changes: 9 additions & 0 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ tests:
- class: org.elasticsearch.packaging.test.KeystoreManagementTests
method: test30KeystorePasswordFromFile
issue: https://github.com/elastic/elasticsearch/issues/118123
- class: org.elasticsearch.packaging.test.KeystoreManagementTests
method: test31WrongKeystorePasswordFromFile
issue: https://github.com/elastic/elasticsearch/issues/118123
- class: org.elasticsearch.packaging.test.ArchiveTests
method: test41AutoconfigurationNotTriggeredWhenNodeCannotContainData
issue: https://github.com/elastic/elasticsearch/issues/118110
Expand All @@ -257,6 +260,12 @@ tests:
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
method: test {lookup-join.LookupMessageFromIndexKeepReordered ASYNC}
issue: https://github.com/elastic/elasticsearch/issues/118151
- class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS2UnavailableRemotesIT
method: testEsqlRcs2UnavailableRemoteScenarios
issue: https://github.com/elastic/elasticsearch/issues/117419
- class: org.elasticsearch.packaging.test.DebPreservationTests
method: test40RestartOnUpgrade
issue: https://github.com/elastic/elasticsearch/issues/118170

# Examples:
#
Expand Down
Loading

0 comments on commit 02db93f

Please sign in to comment.