Skip to content

Commit 2a9f23b

Browse files
authored
Merge branch 'main' into ps250227-capDeletionSuppressedErrors
2 parents 296fa18 + dbac70e commit 2a9f23b

File tree

201 files changed

+2190
-1291
lines changed

Some content is hidden

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

201 files changed

+2190
-1291
lines changed

.buildkite/pipelines/periodic-fwc.template.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ steps:
77
image: family/elasticsearch-ubuntu-2004
88
machineType: n1-standard-32
99
buildDirectory: /dev/shm/bk
10-
preemptible: true
1110
matrix:
1211
setup:
1312
FWC_VERSION: $FWC_LIST
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
# This file is auto-generated. See .buildkite/pipelines/periodic-fwc.template.yml
22
steps:
3-
- label: "{{matrix.FWC_VERSION}} / fwc"
4-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v$$FWC_VERSION#fwcTest -Dtests.bwc.snapshot=false
3+
- label: $FWC_VERSION / fwc
4+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v$FWC_VERSION#fwcTest -Dtests.bwc.snapshot=false
55
timeout_in_minutes: 300
66
agents:
77
provider: gcp
88
image: family/elasticsearch-ubuntu-2004
99
machineType: n1-standard-32
1010
buildDirectory: /dev/shm/bk
11-
preemptible: true
1211
matrix:
1312
setup:
1413
FWC_VERSION: []
1514
env:
16-
FWC_VERSION: "{{matrix.FWC_VERSION}}"
15+
FWC_VERSION: $FWC_VERSION

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private SourceSet addSourceSet(
139139
compileOptions.getRelease().set(javaVersion);
140140
});
141141
if (isMainSourceSet) {
142-
project.getTasks().create(sourceSet.getJavadocTaskName(), Javadoc.class, javadocTask -> {
142+
project.getTasks().register(sourceSet.getJavadocTaskName(), Javadoc.class, javadocTask -> {
143143
javadocTask.getJavadocTool().set(javaToolchains.javadocToolFor(spec -> {
144144
spec.getLanguageVersion().set(JavaLanguageVersion.of(javaVersion));
145145
}));

distribution/tools/java-version-checker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'elasticsearch.build'
22

3-
compileJava {
3+
tasks.named("compileJava").configure {
44
options.release = 8
55
}
66

docs/changelog/123290.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 123290
2+
summary: Fix Driver status iterations and `cpuTime`
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 122967

docs/changelog/123296.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 123296
2+
summary: Avoid over collecting in Limit or Lucene Operator
3+
area: ES|QL
4+
type: bug
5+
issues: []

docs/changelog/123610.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 123610
2+
summary: Disable concurrency when `top_hits` sorts on anything but `_score`
3+
area: "Aggregations"
4+
type: bug
5+
issues: []

docs/changelog/123728.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 123728
2+
summary: Allow skip shards with `_tier` and `_index` in ES|QL
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/reference/community-contributed.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ a number of clients that have been contributed by the community for various lang
4242

4343
## Go [go]
4444

45-
Also see the [official Elasticsearch Go client](go-elasticsearch://docs/reference/index.md).
45+
Also see the [official Elasticsearch Go client](go-elasticsearch://reference/index.md).
4646

4747
* [elastigo](https://github.com/mattbaird/elastigo): Go client. **Last commit more than a year ago**
4848

@@ -56,23 +56,23 @@ Also see the [official Elasticsearch Go client](go-elasticsearch://docs/referenc
5656

5757
## Java [java]
5858

59-
Also see the [official Elasticsearch Java client](elasticsearch-java://docs/reference/index.md).
59+
Also see the [official Elasticsearch Java client](elasticsearch-java://reference/index.md).
6060

6161
* [Flummi](https://github.com/otto-de/flummi): Java Rest client with comprehensive Query DSL API.
6262

6363
* [Jest](https://github.com/searchbox-io/Jest): Java Rest client. **No longer maintained**
6464

6565
## JavaScript [javascript]
6666

67-
See the [official Elasticsearch JavaScript client](elasticsearch-js://docs/reference/index.md).
67+
See the [official Elasticsearch JavaScript client](elasticsearch-js://reference/index.md).
6868

6969
## Julia [julia]
7070

71-
* [ElasticsearchClient.jl](https://github.com/OpenSesame/ElasticsearchClient.jl): Elasticsearch client inspired by the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/reference/index.md).
71+
* [ElasticsearchClient.jl](https://github.com/OpenSesame/ElasticsearchClient.jl): Elasticsearch client inspired by the [official Elasticsearch Ruby client](elasticsearch-ruby://reference/index.md).
7272

7373
## Kotlin [kotlin]
7474

75-
* [ES Kotlin](https://github.com/mbuhot/eskotlin): Elasticsearch Query DSL for kotlin based on the [official Elasticsearch Java client](elasticsearch-java://docs/reference/index.md). **Last commit more than a year ago**
75+
* [ES Kotlin](https://github.com/mbuhot/eskotlin): Elasticsearch Query DSL for kotlin based on the [official Elasticsearch Java client](elasticsearch-java://reference/index.md). **Last commit more than a year ago**
7676

7777
* [ES Kotlin Wrapper Client](https://github.com/jillesvangurp/es-kotlin-wrapper-client): Kotlin extension functions and abstractions for the [official Elasticsearch high-level client](https://www.elastic.co/guide/en/elasticsearch/client/java-api/current/index.html). Aims to reduce the amount of boilerplate needed to do searches, bulk indexing and other common things users do with the client. **No longer maintained**
7878

@@ -82,7 +82,7 @@ See the [official Elasticsearch JavaScript client](elasticsearch-js://docs/refer
8282

8383
## .NET [dotnet]
8484

85-
See the [official Elasticsearch .NET client](elasticsearch-net://docs/reference/index.md).
85+
See the [official Elasticsearch .NET client](elasticsearch-net://reference/index.md).
8686

8787
## Perl [perl]
8888

@@ -92,7 +92,7 @@ Also see the [official Elasticsearch Perl client](https://www.elastic.co/guide/e
9292

9393
## PHP [php]
9494

95-
Also see the [official Elasticsearch PHP client](elasticsearch-php://docs/reference/index.md).
95+
Also see the [official Elasticsearch PHP client](elasticsearch-php://reference/index.md).
9696

9797
* [Elastica](https://github.com/ruflin/Elastica): PHP client.
9898

@@ -102,7 +102,7 @@ Also see the [official Elasticsearch PHP client](elasticsearch-php://docs/refere
102102

103103
## Python [python]
104104

105-
See the [official Elasticsearch Python client](elasticsearch-py://docs/reference/index.md).
105+
See the [official Elasticsearch Python client](elasticsearch-py://reference/index.md).
106106

107107
## R [r]
108108

@@ -114,7 +114,7 @@ See the [official Elasticsearch Python client](elasticsearch-py://docs/reference
114114

115115
## Ruby [ruby]
116116

117-
Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/reference/index.md).
117+
Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://reference/index.md).
118118

119119
* [chewy](https://github.com/toptal/chewy): An ODM and wrapper for the official Elasticsearch client.
120120

@@ -128,7 +128,7 @@ Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/refe
128128

129129
## Rust [rust]
130130

131-
Also see the [official Elasticsearch Rust client](elasticsearch-rs://docs/reference/index.md).
131+
Also see the [official Elasticsearch Rust client](elasticsearch-rs://reference/index.md).
132132

133133
* [rs-es](https://github.com/benashford/rs-es): A REST API client with a strongly-typed Query DSL. **Last commit more than a year ago**
134134

docs/reference/data-analysis/aggregations/index.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ mapped_pages:
55

66
# Aggregations
77

8-
% What needs to be done: Refine
8+
:::{note}
9+
This section provides detailed **reference information** for aggregations.
910

10-
% Scope notes: need to scope the page down to just reference content
11-
12-
% Use migrated content from existing pages that map to this page:
13-
14-
% - [ ] ./raw-migrated-files/elasticsearch/elasticsearch-reference/search-aggregations.md
11+
Refer to [Aggregations](docs-content://explore-analyze/query-filter/aggregations.md) in the **Explore and analyze** section for overview, getting started and conceptual information.
12+
:::
1513

1614
Aggregations are a powerful framework that enables you to perform complex data analysis and summarization over indexed documents. They enable you to extract and compute statistics, trends, and patterns from large datasets.
1715

0 commit comments

Comments
 (0)