forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into transform_node_info_api
- Loading branch information
Showing
277 changed files
with
3,834 additions
and
1,776 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
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: 109204 | ||
summary: Detect long-running tasks on network threads | ||
area: Network | ||
type: enhancement | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 109233 | ||
summary: Fix trappy timeouts in security settings APIs | ||
area: Security | ||
type: bug | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 109332 | ||
summary: "ES|QL: vectorize eval" | ||
area: ES|QL | ||
type: enhancement | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
pr: 109370 | ||
summary: Enable fallback synthetic source by default | ||
area: Mapping | ||
type: feature | ||
issues: | ||
- 106460 |
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: 109440 | ||
summary: Fix task cancellation on remote cluster when original request fails | ||
area: Network | ||
type: bug | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 109470 | ||
summary: Enabling profiling for `RankBuilders` and adding tests for RRF | ||
area: Ranking | ||
type: enhancement | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 109481 | ||
summary: Fork freeing search/scroll contexts to GENERIC pool | ||
area: Search | ||
type: bug | ||
issues: [] |
18 changes: 18 additions & 0 deletions
18
docs/reference/esql/functions/kibana/definition/coalesce.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
49 changes: 49 additions & 0 deletions
49
...extras/src/yamlRestTest/resources/rest-api-spec/test/rank_feature/30_synthetic_source.yml
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,49 @@ | ||
setup: | ||
- requires: | ||
cluster_features: ["mapper.source.synthetic_source_fallback"] | ||
reason: introduced in 8.15.0 | ||
|
||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
mappings: | ||
_source: | ||
mode: synthetic | ||
properties: | ||
pagerank: | ||
type: rank_feature | ||
|
||
--- | ||
"synthetic source sanity test": | ||
- do: | ||
index: | ||
index: test | ||
id: "1" | ||
body: | ||
pagerank: 10 | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: "2" | ||
body: | ||
pagerank: null | ||
|
||
- do: | ||
indices.refresh: {} | ||
|
||
- do: | ||
get: | ||
index: test | ||
id: "1" | ||
|
||
- match: { _source.pagerank: 10 } | ||
|
||
- do: | ||
get: | ||
index: test | ||
id: "2" | ||
|
||
- match: { _source.pagerank: null } | ||
|
56 changes: 56 additions & 0 deletions
56
...xtras/src/yamlRestTest/resources/rest-api-spec/test/rank_features/20_synthetic_source.yml
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,56 @@ | ||
setup: | ||
- requires: | ||
cluster_features: ["mapper.source.synthetic_source_fallback"] | ||
reason: introduced in 8.15.0 | ||
|
||
- do: | ||
indices.create: | ||
index: test | ||
body: | ||
mappings: | ||
_source: | ||
mode: synthetic | ||
properties: | ||
tags: | ||
type: rank_features | ||
|
||
--- | ||
"synthetic source sanity test": | ||
- do: | ||
index: | ||
index: test | ||
id: "1" | ||
body: | ||
tags: | ||
foo: 3 | ||
bar: 5 | ||
|
||
- do: | ||
index: | ||
index: test | ||
id: "2" | ||
body: | ||
tags: [] | ||
|
||
- do: | ||
indices.refresh: {} | ||
|
||
- do: | ||
get: | ||
index: test | ||
id: "1" | ||
|
||
- match: | ||
_source: | ||
tags: | ||
foo: 3 | ||
bar: 5 | ||
|
||
- do: | ||
get: | ||
index: test | ||
id: "2" | ||
|
||
- match: { _source.tags: [] } | ||
|
||
|
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.