Skip to content

Commit 8ebb3e2

Browse files
author
elasticsearchmachine
committed
Merge remote-tracking branch 'origin/main' into lucene_snapshot
2 parents f352daa + 5b929d7 commit 8ebb3e2

File tree

195 files changed

+3865
-1067
lines changed

Some content is hidden

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

195 files changed

+3865
-1067
lines changed

.buildkite/scripts/dra-workflow.sh

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ find "$WORKSPACE" -type d -path "*/build/distributions" -exec chmod a+w {} \;
7575

7676
echo --- Running release-manager
7777

78+
set +e
7879
# Artifacts should be generated
7980
docker run --rm \
8081
--name release-manager \
@@ -91,4 +92,16 @@ docker run --rm \
9192
--version "$ES_VERSION" \
9293
--artifact-set main \
9394
--dependency "beats:https://artifacts-${WORKFLOW}.elastic.co/beats/${BEATS_BUILD_ID}/manifest-${ES_VERSION}${VERSION_SUFFIX}.json" \
94-
--dependency "ml-cpp:https://artifacts-${WORKFLOW}.elastic.co/ml-cpp/${ML_CPP_BUILD_ID}/manifest-${ES_VERSION}${VERSION_SUFFIX}.json"
95+
--dependency "ml-cpp:https://artifacts-${WORKFLOW}.elastic.co/ml-cpp/${ML_CPP_BUILD_ID}/manifest-${ES_VERSION}${VERSION_SUFFIX}.json" \
96+
2>&1 | tee release-manager.log
97+
EXIT_CODE=$?
98+
set -e
99+
100+
# This failure is just generating a ton of noise right now, so let's just ignore it
101+
# This should be removed once this issue has been fixed
102+
if grep "elasticsearch-ubi-9.0.0-SNAPSHOT-docker-image.tar.gz" release-manager.log; then
103+
echo "Ignoring error about missing ubi artifact"
104+
exit 0
105+
fi
106+
107+
exit "$EXIT_CODE"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public enum DockerBase {
2222
// Chainguard based wolfi image with latest jdk
2323
// This is usually updated via renovatebot
2424
// spotless:off
25-
WOLFI("docker.elastic.co/wolfi/chainguard-base:latest@sha256:973431347ad45f40e01afbbd010bf9de929c088a63382239b90dd84f39618bc8",
25+
WOLFI("docker.elastic.co/wolfi/chainguard-base:latest@sha256:55b297da5151d2a2997e8ab9729fe1304e4869389d7090ab7031cc29530f69f8",
2626
"-wolfi",
2727
"apk"
2828
),

docs/changelog/115020.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 115020
2+
summary: Adding endpoint creation validation for all task types to remaining services
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/117246.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 117246
2+
summary: LOOKUP JOIN using field-caps for field mapping
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/117404.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 117404
2+
summary: Correct bit * byte and bit * float script comparisons
3+
area: Vector Search
4+
type: bug
5+
issues: []

docs/reference/data-streams/tsds-reindex.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ POST /_component_template/destination_template
202202
POST /_index_template/2
203203
{
204204
"index_patterns": [
205-
"k8s*"
205+
"k9s*"
206206
],
207207
"composed_of": [
208208
"destination_template"

docs/reference/esql/esql-kibana.asciidoc

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,27 @@ detailed warning, expand the query bar, and click *warnings*.
106106
==== Query history
107107

108108
You can reuse your recent {esql} queries in the query bar.
109-
In the query bar click *Show recent queries*.
109+
In the query bar, click *Show recent queries*.
110110

111111
You can then scroll through your recent queries:
112112

113113
image::images/esql/esql-discover-query-history.png[align="center",size="50%"]
114114

115+
[discrete]
116+
[[esql-kibana-starred-queries]]
117+
==== Starred queries
118+
119+
From the query history, you can mark some queries as favorite to find and access them faster later.
120+
121+
In the query bar, click *Show recent queries*.
122+
123+
From the **Recent** tab, you can star any queries you want.
124+
125+
In the **Starred** tab, find all the queries you have previously starred.
126+
127+
image::images/esql/esql-discover-query-starred.png[align="center",size="50%"]
128+
129+
115130
[discrete]
116131
[[esql-kibana-results-table]]
117132
=== The results table

docs/reference/esql/functions/description/kql.asciidoc

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/esql/functions/examples/kql.asciidoc

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/esql/functions/kibana/definition/kql.json

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)