Skip to content

Commit

Permalink
Merge branch 'main' into esql_railroad_for_operators
Browse files Browse the repository at this point in the history
  • Loading branch information
nik9000 committed Dec 7, 2023
2 parents 2746233 + d8bbc62 commit 48ffab5
Show file tree
Hide file tree
Showing 177 changed files with 3,502 additions and 1,872 deletions.
4 changes: 2 additions & 2 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"upstream" : "elastic/elasticsearch",
"targetBranchChoices" : [ "main", "8.11", "8.10", "8.9", "8.8", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetBranchChoices" : [ "main", "8.12", "8.11", "8.10", "8.9", "8.8", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetPRLabels" : [ "backport" ],
"branchLabelMapping" : {
"^v8.12.0$" : "main",
"^v8.13.0$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}
2 changes: 1 addition & 1 deletion .buildkite/pipelines/intake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ steps:
timeout_in_minutes: 300
matrix:
setup:
BWC_VERSION: ["7.17.16", "8.11.2", "8.12.0"]
BWC_VERSION: ["7.17.16", "8.11.3", "8.12.0", "8.13.0"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
Expand Down
32 changes: 32 additions & 0 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1745,6 +1745,22 @@ steps:
env:
BWC_VERSION: 8.11.2

- label: "{{matrix.image}} / 8.11.3 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.11.3
timeout_in_minutes: 300
matrix:
setup:
image:
- rocky-8
- ubuntu-2004
agents:
provider: gcp
image: family/elasticsearch-{{matrix.image}}
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.3

- label: "{{matrix.image}} / 8.12.0 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.12.0
timeout_in_minutes: 300
Expand All @@ -1761,6 +1777,22 @@ steps:
env:
BWC_VERSION: 8.12.0

- label: "{{matrix.image}} / 8.13.0 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.0
timeout_in_minutes: 300
matrix:
setup:
image:
- rocky-8
- ubuntu-2004
agents:
provider: gcp
image: family/elasticsearch-{{matrix.image}}
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.13.0

- group: packaging-tests-windows
steps:
- label: "{{matrix.image}} / packaging-tests-windows"
Expand Down
22 changes: 21 additions & 1 deletion .buildkite/pipelines/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ steps:
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: custom-32-98304
machineType: n1-standard-32
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.16
Expand Down Expand Up @@ -1072,6 +1072,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.2
- label: 8.11.3 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.11.3#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: n1-standard-32
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.11.3
- label: 8.12.0 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.12.0#bwcTest
timeout_in_minutes: 300
Expand All @@ -1082,6 +1092,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.12.0
- label: 8.13.0 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.0#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: n1-standard-32
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.13.0
- label: concurrent-search-tests
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true -Dtests.jvm.argline=-Des.concurrent_search=true -Des.concurrent_search=true check
timeout_in_minutes: 420
Expand Down
2 changes: 2 additions & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,6 @@ BWC_VERSION:
- "8.11.0"
- "8.11.1"
- "8.11.2"
- "8.11.3"
- "8.12.0"
- "8.13.0"
3 changes: 2 additions & 1 deletion .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
BWC_VERSION:
- "7.17.16"
- "8.11.2"
- "8.11.3"
- "8.12.0"
- "8.13.0"
3 changes: 3 additions & 0 deletions branches.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
{
"branch": "main"
},
{
"branch": "8.12"
},
{
"branch": "8.11"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ public void execute(Task t) {
"--add-opens=java.base/java.nio.file=ALL-UNNAMED",
"--add-opens=java.base/java.time=ALL-UNNAMED",
"--add-opens=java.management/java.lang.management=ALL-UNNAMED",
"-XX:+HeapDumpOnOutOfMemoryError"
"-XX:+HeapDumpOnOutOfMemoryError",
// REMOVE once bumped to a JDK greater than 21.0.1, https://github.com/elastic/elasticsearch/issues/103004
"-XX:CompileCommand=exclude,org.apache.lucene.util.MSBRadixSorter::computeCommonPrefixLengthAndBuildHistogram",
"-XX:CompileCommand=exclude,org.apache.lucene.util.RadixSelector::computeCommonPrefixLengthAndBuildHistogram"
);

test.getJvmArgumentProviders().add(new SimpleCommandLineArgumentProvider("-XX:HeapDumpPath=" + heapdumpDir));
Expand Down
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 8.12.0
elasticsearch = 8.13.0
lucene = 9.9.0

bundled_jdk_vendor = openjdk
Expand Down
2 changes: 1 addition & 1 deletion distribution/docker/src/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<% if (docker_base == 'iron_bank') { %>
ARG BASE_REGISTRY=registry1.dso.mil
ARG BASE_IMAGE=ironbank/redhat/ubi/ubi9
ARG BASE_TAG=9.2
ARG BASE_TAG=9.3
<% } %>
################################################################################
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tags:
# Build args passed to Dockerfile ARGs
args:
BASE_IMAGE: "redhat/ubi/ubi9"
BASE_TAG: "9.2"
BASE_TAG: "9.3"

# Docker image labels
labels:
Expand Down
4 changes: 4 additions & 0 deletions distribution/src/config/jvm.options
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
# result in less optimal vector performance
20-:--add-modules=jdk.incubator.vector

# REMOVE once bumped to a JDK greater than 21.0.1, https://github.com/elastic/elasticsearch/issues/103004
19-21:-XX:CompileCommand=exclude,org.apache.lucene.util.MSBRadixSorter::computeCommonPrefixLengthAndBuildHistogram
19-21:-XX:CompileCommand=exclude,org.apache.lucene.util.RadixSelector::computeCommonPrefixLengthAndBuildHistogram

## heap dumps

# generate a heap dump when an allocation from the Java heap fails; heap dumps
Expand Down
6 changes: 0 additions & 6 deletions docs/changelog/100986.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/101915.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102057.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102114.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102151.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102220.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102230.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102240.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102250.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102259.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102281.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102282.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102311.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102396.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102399.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102467.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102492.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions docs/changelog/102559.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 102559
summary: "Prune unnecessary information from TransportNodesStatsAction.NodeStatsRequest"
area: Network
type: enhancement
issues: [100878]
6 changes: 0 additions & 6 deletions docs/changelog/102580.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102599.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions docs/changelog/102715.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102716.yaml

This file was deleted.

6 changes: 6 additions & 0 deletions docs/changelog/102741.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 102741
summary: "[ILM] More resilient when a policy is added to searchable snapshot"
area: ILM+SLM
type: bug
issues:
- 101958
5 changes: 0 additions & 5 deletions docs/changelog/102779.yaml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/changelog/102821.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions docs/changelog/102831.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions docs/changelog/102843.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 102843
summary: Restore `SharedBytes.IO` refcounting on reads & writes
area: Snapshot/Restore
type: bug
issues: []
7 changes: 0 additions & 7 deletions docs/changelog/102891.yaml

This file was deleted.

5 changes: 5 additions & 0 deletions docs/changelog/102902.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 102902
summary: Fast path for reading single doc with ordinals
area: ES|QL
type: enhancement
issues: []
6 changes: 0 additions & 6 deletions docs/changelog/102934.yaml

This file was deleted.

9 changes: 9 additions & 0 deletions docs/changelog/103031.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
pr: 103031
summary: Collect warnings in compute service
area: ES|QL
type: bug
issues:
- 100163
- 103028
- 102871
- 102982
5 changes: 5 additions & 0 deletions docs/changelog/103033.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 103033
summary: "X-pack/plugin/core: rename `double_metrics` template"
area: Data streams
type: enhancement
issues: []
Loading

0 comments on commit 48ffab5

Please sign in to comment.