Skip to content

Commit 0b9dccf

Browse files
authored
Merge branch 'main' into transport/resolve_cherry_pick
2 parents ade2a64 + e9a4419 commit 0b9dccf

File tree

607 files changed

+7473
-4176
lines changed

Some content is hidden

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

607 files changed

+7473
-4176
lines changed

benchmarks/src/main/java/org/elasticsearch/benchmark/_nightly/esql/QueryPlanningBenchmark.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ public void setup() {
9696
false,
9797
AnalyzerSettings.QUERY_TIMESERIES_RESULT_TRUNCATION_DEFAULT_SIZE.getDefault(Settings.EMPTY),
9898
AnalyzerSettings.QUERY_TIMESERIES_RESULT_TRUNCATION_DEFAULT_SIZE.get(Settings.EMPTY),
99-
null
99+
null,
100+
Map.of()
100101
);
101102

102103
var fields = 10_000;

benchmarks/src/main/java/org/elasticsearch/benchmark/compute/operator/AggregatorBenchmark.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ private static Operator operator(DriverContext driverContext, String grouping, S
201201
return new HashAggregationOperator(
202202
List.of(supplier(op, dataType, filter).groupingAggregatorFactory(AggregatorMode.SINGLE, List.of(groups.size()))),
203203
() -> BlockHash.build(groups, driverContext.blockFactory(), 16 * 1024, false),
204+
Integer.MAX_VALUE,
205+
1.0,
204206
driverContext
205207
);
206208
}

benchmarks/src/main/java/org/elasticsearch/benchmark/compute/operator/EvalBenchmark.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,8 @@ private static Configuration configuration() {
376376
false,
377377
AnalyzerSettings.QUERY_TIMESERIES_RESULT_TRUNCATION_MAX_SIZE.getDefault(Settings.EMPTY),
378378
AnalyzerSettings.QUERY_TIMESERIES_RESULT_TRUNCATION_DEFAULT_SIZE.getDefault(Settings.EMPTY),
379-
null
379+
null,
380+
Map.of()
380381
);
381382
}
382383

benchmarks/src/main/java/org/elasticsearch/benchmark/compute/operator/ValuesAggregatorBenchmark.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ private static Operator operator(DriverContext driverContext, int groups, String
124124
return new HashAggregationOperator(
125125
List.of(supplier(dataType).groupingAggregatorFactory(mode, List.of(1))),
126126
() -> BlockHash.build(groupSpec, driverContext.blockFactory(), 16 * 1024, false),
127+
Integer.MAX_VALUE,
128+
1.0,
127129
driverContext
128130
) {
129131
@Override

branches.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
{
2121
"branch" : "8.19",
2222
"version" : "8.19.11"
23-
},
24-
{
25-
"branch" : "7.17",
26-
"version" : "7.17.30"
2723
}
2824
]
2925
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ private static ListMultimap<Class<?>, String> createLegacyRestTestBasePluginUsag
7171
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:jdbc:single-node");
7272
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:jdbc:security:with-ssl");
7373
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:jdbc:security:without-ssl");
74-
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:mixed-node");
7574
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:server:security:with-ssl");
7675
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:sql:qa:server:security:without-ssl");
7776
map.put(LegacyRestTestBasePlugin.class, ":x-pack:plugin:text-structure:qa:text-structure-with-security");

distribution/docker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ boolean useLocalArtifacts = buildId != null && buildId.isBlank() == false && use
2626

2727
// FIPS version for Docker builds: '140-2' (default) or '140-3'
2828
// Use -Ddocker.fips.version=140-3 to build with FIPS 140-3 / BC 2.x libraries
29-
ext.isFips140_3 = providers.systemProperty('docker.fips.version').getOrElse('140-2') == '140-3'
29+
ext.isFips140_3 = providers.systemProperty('docker.fips.version').getOrElse('140-3') == '140-3'
3030

3131
repositories {
3232
// Define a repository that allows Gradle to fetch a resource from GitHub. This

docs/changelog/134995.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pr: 134995
2+
summary: ES|QL Views support
3+
area: ES|QL
4+
type: feature
5+
issues: []
6+
highlight:
7+
title: "ES|QL Views support"
8+
body: |-
9+
ES|QL now supports Views, allowing users to create reusable query components that can be referenced in multiple queries.
10+
This feature enhances query modularity and maintainability,
11+
making it easier to manage complex queries by breaking them down into simpler, reusable parts.

docs/changelog/140788.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 140788
2+
summary: Flip cloud-ess-fips default from FIPS 140-2 to FIPS 140-3
3+
area: Packaging
4+
type: enhancement
5+
issues: []

docs/changelog/141242.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pr: 141242
2+
summary: Deep copy `BytesRef` when creating a constant vector block
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 140615
7+
- 140809
8+
- 140621

0 commit comments

Comments
 (0)