Skip to content

Commit 52f0943

Browse files
Merge branch '8.x' into 8-x-backport-114337
2 parents 1216013 + 6665b31 commit 52f0943

File tree

322 files changed

+7244
-4469
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+7244
-4469
lines changed

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchBuildCompletePlugin.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,13 @@ public void execute(BuildFinishedFlowAction.Parameters parameters) throws FileNo
163163
// So, if you change this such that the artifact will have a slash/directory in it, you'll need to update the logic
164164
// below as well
165165
pb.directory(uploadFileDir);
166-
pb.start().waitFor();
166+
try {
167+
// we are very generious here, as the upload can take
168+
// a long time depending on its size
169+
pb.start().waitFor(30, java.util.concurrent.TimeUnit.MINUTES);
170+
} catch (InterruptedException e) {
171+
System.out.println("Failed to upload buildkite artifact " + e.getMessage());
172+
}
167173

168174
System.out.println("Generating buildscan link for artifact...");
169175

build-tools-internal/src/main/resources/changelog-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@
284284
"Cluster and node setting",
285285
"Command line tool",
286286
"CRUD",
287+
"ES|QL",
287288
"Index setting",
288289
"Ingest",
289290
"JVM option",

docs/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ testClusters.matching { it.name == "yamlRestTest"}.configureEach {
123123

124124
requiresFeature 'es.index_mode_feature_flag_registered', Version.fromString("8.0.0")
125125
requiresFeature 'es.failure_store_feature_flag_enabled', Version.fromString("8.12.0")
126-
requiresFeature 'es.ccs_telemetry_feature_flag_enabled', Version.fromString("8.16.0")
127126

128127
// TODO Rene: clean up this kind of cross project file references
129128
extraConfigFile 'op-jwks.json', project(':x-pack:test:idp-fixture').file("src/main/resources/oidc/op-jwks.json")

docs/changelog/113825.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pr: 113825
2+
summary: Cross-cluster search telemetry
3+
area: Search
4+
type: feature
5+
issues: []
6+
highlight:
7+
title: Cross-cluster search telemetry
8+
body: |-
9+
The cross-cluster search telemetry is collected when cross-cluster searches
10+
are performed, and is returned as "ccs" field in `_cluster/stats` output.
11+
It also add a new parameter `include_remotes=true` to the `_cluster/stats` API
12+
which will collect data from connected remote clusters.

docs/changelog/113967.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
pr: 113967
2+
summary: "ESQL: Entirely remove META FUNCTIONS"
3+
area: ES|QL
4+
type: breaking
5+
issues: []
6+
breaking:
7+
title: "ESQL: Entirely remove META FUNCTIONS"
8+
area: ES|QL
9+
details: |
10+
Removes an undocumented syntax from ESQL: META FUNCTION. This was never
11+
reliable or really useful. Consult the documentation instead.
12+
impact: "Removes an undocumented syntax from ESQL: META FUNCTION"
13+
notable: false

docs/changelog/114157.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114157
2+
summary: Add a `terminate` ingest processor
3+
area: Ingest Node
4+
type: feature
5+
issues:
6+
- 110218

docs/changelog/114234.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114234
2+
summary: Prevent flattening of ordered and unordered interval sources
3+
area: Search
4+
type: bug
5+
issues: []

docs/changelog/114264.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114264
2+
summary: "Fix analyzed wildcard query in simple_query_string when disjunctions is empty"
3+
area: Search
4+
type: bug
5+
issues: [114185]

docs/changelog/114368.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114368
2+
summary: "ESQL: Delay construction of warnings"
3+
area: EQL
4+
type: enhancement
5+
issues: []

docs/reference/esql/functions/description/mv_first.asciidoc

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)