Skip to content

Commit 1d01c0c

Browse files
authored
Merge branch 'main' into 12080-index-shard-count-allocation-decider-follow-up3
2 parents 35f41eb + b6aa2ed commit 1d01c0c

File tree

106 files changed

+1316
-610
lines changed

Some content is hidden

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

106 files changed

+1316
-610
lines changed

build-conventions/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
plugins {
11-
id "com.gradle.develocity" version "4.1.1"
11+
id "com.gradle.develocity" version "4.2.2"
1212
}
1313

1414
rootProject.name = 'build-conventions'

build-tools-internal/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pluginManagement {
99
}
1010

1111
plugins {
12-
id "com.gradle.develocity" version "4.1.1"
12+
id "com.gradle.develocity" version "4.2.2"
1313
}
1414

1515
dependencyResolutionManagement {

build-tools/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pluginManagement {
1010
includeBuild "../build-conventions"
1111
}
1212
plugins {
13-
id "com.gradle.develocity" version "4.1.1"
13+
id "com.gradle.develocity" version "4.2.2"
1414
}
1515
include 'reaper'
1616

distribution/tools/server-cli/src/main/java/org/elasticsearch/server/cli/SystemJvmOptions.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ static List<String> systemJvmOptions(Settings nodeSettings, final Map<String, St
6262
"-Dio.netty.recycler.maxCapacityPerThread=0",
6363
// Needed to get access to raw vectors from Lucene scorers
6464
"--add-opens=org.apache.lucene.core/org.apache.lucene.codecs.lucene99=org.elasticsearch.server",
65+
"--add-opens=org.apache.lucene.core/org.apache.lucene.codecs.hnsw=org.elasticsearch.server",
6566
"--add-opens=org.apache.lucene.core/org.apache.lucene.internal.vectorization=org.elasticsearch.server",
6667
// log4j 2
6768
"-Dlog4j.shutdownHookEnabled=false",

docs/changelog/134709.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 134709
2+
summary: "OTLP: store units in mappings"
3+
area: Mapping
4+
type: enhancement
5+
issues: []

docs/changelog/138559.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138559
2+
summary: Accept `project_routing` as query parameter
3+
area: EQL
4+
type: enhancement
5+
issues: []

docs/changelog/138568.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138568
2+
summary: Use doc values skipper for `_tsid` in synthetic `_id` postings
3+
area: TSDB
4+
type: enhancement
5+
issues: []

docs/changelog/138718.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 138718
2+
summary: Add `project_routing` option
3+
area: SQL
4+
type: enhancement
5+
issues: []

docs/reference/elasticsearch/mapping-reference/mapping-source-field.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,9 @@ An expert-only feature is the ability to prune the contents of the `_source` fie
356356
Removing fields from the `_source` has similar downsides to disabling `_source`, especially the fact that you cannot reindex documents from one Elasticsearch index to another. Consider using [source filtering](/reference/elasticsearch/rest-apis/retrieve-selected-fields.md#source-filtering) instead.
357357
::::
358358

359+
::::{note}
360+
Source pruning is not available in {{serverless-short}}
361+
::::
359362

360363
The `includes`/`excludes` parameters (which also accept wildcards) can be used as follows:
361364

gradle/build.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ checkstyle = "com.puppycrawl.tools:checkstyle:11.0.1"
1717
commmons-io = "commons-io:commons-io:2.2"
1818
docker-compose = "com.avast.gradle:gradle-docker-compose-plugin:0.17.5"
1919
forbiddenApis = "de.thetaphi:forbiddenapis:3.8"
20-
gradle-enterprise = "com.gradle:develocity-gradle-plugin:4.1.1"
20+
gradle-enterprise = "com.gradle:develocity-gradle-plugin:4.2.2"
2121
hamcrest = "org.hamcrest:hamcrest:3.0"
2222
httpcore5 = "org.apache.httpcomponents.core5:httpcore5:5.3.3"
2323
httpclient5 = "org.apache.httpcomponents.client5:httpclient5:5.4.2"

0 commit comments

Comments
 (0)