Skip to content

Commit 59ccda8

Browse files
committed
Merge branch 'main' into esql-telemetry
2 parents 402b9a6 + fb9cffd commit 59ccda8

File tree

194 files changed

+2838
-484
lines changed

Some content is hidden

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

194 files changed

+2838
-484
lines changed

benchmarks/src/main/java/org/elasticsearch/benchmark/index/mapper/LogsDbDocumentParsingBenchmark.java

Lines changed: 400 additions & 0 deletions
Large diffs are not rendered by default.

build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ develocity {
9898
link 'Source', "${prBaseUrl}/tree/${System.getenv('BUILDKITE_COMMIT')}"
9999
link 'Pull Request', "https://github.com/${repository}/pull/${prId}"
100100
} else {
101-
value 'Git Commit ID', gitRevision
102-
link 'Source', "https://github.com/${repository}/tree/${gitRevision}"
101+
value 'Git Commit ID', gitRevision.get()
102+
link 'Source', "https://github.com/${repository}/tree/${gitRevision.get()}"
103103
}
104104

105105
buildFinished { result ->

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
import java.util.List;
1515

1616
public class InternalElasticsearchDistributionTypes {
17-
public static ElasticsearchDistributionType DEB = new DebElasticsearchDistributionType();
18-
public static ElasticsearchDistributionType RPM = new RpmElasticsearchDistributionType();
19-
public static ElasticsearchDistributionType DOCKER = new DockerElasticsearchDistributionType();
20-
public static ElasticsearchDistributionType DOCKER_IRONBANK = new DockerIronBankElasticsearchDistributionType();
21-
public static ElasticsearchDistributionType DOCKER_CLOUD_ESS = new DockerCloudEssElasticsearchDistributionType();
22-
public static ElasticsearchDistributionType DOCKER_WOLFI = new DockerWolfiElasticsearchDistributionType();
17+
public static final ElasticsearchDistributionType DEB = new DebElasticsearchDistributionType();
18+
public static final ElasticsearchDistributionType RPM = new RpmElasticsearchDistributionType();
19+
public static final ElasticsearchDistributionType DOCKER = new DockerElasticsearchDistributionType();
20+
public static final ElasticsearchDistributionType DOCKER_IRONBANK = new DockerIronBankElasticsearchDistributionType();
21+
public static final ElasticsearchDistributionType DOCKER_CLOUD_ESS = new DockerCloudEssElasticsearchDistributionType();
22+
public static final ElasticsearchDistributionType DOCKER_WOLFI = new DockerWolfiElasticsearchDistributionType();
2323

24-
public static List<ElasticsearchDistributionType> ALL_INTERNAL = List.of(
24+
public static final List<ElasticsearchDistributionType> ALL_INTERNAL = List.of(
2525
DEB,
2626
RPM,
2727
DOCKER,

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rerun/TestRerunTaskExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class TestRerunTaskExtension {
3030
/**
3131
* The name of the extension added to each test task.
3232
*/
33-
public static String NAME = "rerun";
33+
public static final String NAME = "rerun";
3434

3535
private final Property<Integer> maxReruns;
3636

build-tools/src/main/java/org/elasticsearch/gradle/distribution/ElasticsearchDistributionTypes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
import org.elasticsearch.gradle.ElasticsearchDistributionType;
1313

1414
public class ElasticsearchDistributionTypes {
15-
public static ElasticsearchDistributionType ARCHIVE = new ArchiveElasticsearchDistributionType();
16-
public static ElasticsearchDistributionType INTEG_TEST_ZIP = new IntegTestZipElasticsearchDistributionType();
15+
public static final ElasticsearchDistributionType ARCHIVE = new ArchiveElasticsearchDistributionType();
16+
public static final ElasticsearchDistributionType INTEG_TEST_ZIP = new IntegTestZipElasticsearchDistributionType();
1717
}

docs/changelog/118958.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 118958
2+
summary: Add missing timeouts to rest-api-spec SLM APIs
3+
area: ILM+SLM
4+
type: bug
5+
issues: []

docs/changelog/119265.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 119265
2+
summary: Fix `AbstractShapeGeometryFieldMapperTests`
3+
area: "ES|QL"
4+
type: bug
5+
issues:
6+
- 119201

docs/changelog/119291.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 119291
2+
summary: Register mustache size limit setting
3+
area: Infra/Scripting
4+
type: bug
5+
issues: []

docs/reference/ingest/enrich.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ and <<update-enrich-policies, update your enrich policies>>.
9898
[IMPORTANT]
9999
====
100100
The enrich processor performs several operations and may impact the speed of
101-
your ingest pipeline.
101+
your ingest pipeline. We recommend <<modules-node,node roles>> co-locating
102+
ingest and data roles to minimize remote search operations.
102103
103104
We strongly recommend testing and benchmarking your enrich processors
104105
before deploying them in production.

libs/grok/src/main/java/org/elasticsearch/grok/PatternBank.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
public class PatternBank {
2525

26-
public static PatternBank EMPTY = new PatternBank(Map.of());
26+
public static final PatternBank EMPTY = new PatternBank(Map.of());
2727

2828
private final Map<String, String> bank;
2929

0 commit comments

Comments
 (0)