Skip to content

Commit 3e7ac5f

Browse files
Merge branch 'main' into rename-unpromotables
2 parents 520c70a + ae0f1a6 commit 3e7ac5f

File tree

808 files changed

+3689
-2941
lines changed

Some content is hidden

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

808 files changed

+3689
-2941
lines changed

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:dd66beec64a7f9b19c6c35a1195153b2b630a55e16ec71949ed5187c5947eea1",
25+
WOLFI("docker.elastic.co/wolfi/chainguard-base:latest@sha256:bd401704a162a7937cd1015f755ca9da9aba0fdf967fc6bf90bf8d3f6b2eb557",
2626
"-wolfi",
2727
"apk"
2828
),

build-tools-internal/src/main/resources/changelog-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@
291291
"JVM option",
292292
"Java API",
293293
"Logging",
294+
"Logs",
294295
"Mapping",
295296
"Packaging",
296297
"Painless",

docs/changelog/120064.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 120064
2+
summary: Change the auditor to write via an alias
3+
area: Machine Learning
4+
type: upgrade
5+
issues: []

docs/changelog/120340.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 120340
2+
summary: Add support for `extended_stats`
3+
area: Transform
4+
type: enhancement
5+
issues: []

docs/changelog/120807.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 120807
2+
summary: Remove INDEX_REFRESH_BLOCK after index becomes searchable
3+
area: CRUD
4+
type: enhancement
5+
issues: []

docs/changelog/121049.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
pr: 121049
2+
summary: Conditionally enable logsdb by default for data streams matching with logs-*-*
3+
pattern.
4+
area: Logs
5+
type: breaking
6+
issues:
7+
- 106489
8+
breaking:
9+
title: Conditionally enable logsdb by default
10+
area: Logs
11+
details: |-
12+
Logsdb will be enabled by default for data streams matching with logs-*-* pattern.
13+
If upgrading from 8.x to 9.x and data streams matching with log-*-* do exist,
14+
then Logsdb will not be enabled by default.
15+
impact: |-
16+
Logsdb reduce storage footprint in Elasticsearch for logs, but there are side effects
17+
to be taken into account that are described in the Logsdb docs:
18+
https://www.elastic.co/guide/en/elasticsearch/reference/current/logs-data-stream.html#upgrade-to-logsdb-notes
19+
notable: true

docs/changelog/121074.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 121074
2+
summary: Implement a `MetricsAware` interface
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/121105.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 121105
2+
summary: Mark bbq indices as GA and add rolling upgrade integration tests
3+
area: Vector Search
4+
type: feature
5+
issues: []

docs/community-clients/index.asciidoc

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,6 @@ client].
205205

206206
Also see the {client}/ruby-api/current/index.html[official Elasticsearch Ruby client].
207207

208-
* https://github.com/printercu/elastics-rb[elastics]:
209-
Tiny client with built-in zero-downtime migrations and ActiveRecord integration.
210-
**- Last commit more than a year ago**
211-
212208
* https://github.com/toptal/chewy[chewy]:
213209
An ODM and wrapper for the official Elasticsearch client.
214210

@@ -218,6 +214,13 @@ Also see the {client}/ruby-api/current/index.html[official Elasticsearch Ruby cl
218214
* https://github.com/artsy/estella[Estella]:
219215
Make your Ruby models searchable.
220216

217+
* https://github.com/mrkamel/search_flip[SearchFlip]:
218+
Full-Featured Elasticsearch Ruby Client with a Chainable DSL.
219+
220+
* https://github.com/printercu/elastics-rb[elastics]:
221+
Tiny client with built-in zero-downtime migrations and ActiveRecord integration.
222+
**- Last commit more than a year ago**
223+
221224
[[rust]]
222225
== Rust
223226

@@ -267,4 +270,4 @@ client].
267270

268271
* https://github.com/reactiverse/elasticsearch-client[elasticsearch-client]:
269272
An Elasticsearch client for Eclipse Vert.x
270-
**- Last commit more than a year ago**
273+
**- Last commit more than a year ago**

docs/reference/aggregations/bucket/time-series-aggregation.asciidoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@
66

77
preview::[]
88

9-
The time series aggregation queries data created using a time series index. This is typically data such as metrics
9+
The time series aggregation queries data created using a <<tsds,Time series data stream (TSDS)>>. This is typically data such as metrics
1010
or other data streams with a time component, and requires creating an index using the time series mode.
1111

12+
[NOTE]
13+
====
14+
Refer to the <<differences-from-regular-data-stream, TSDS documentation>> to learn more about the key differences from regular data streams.
15+
====
16+
1217
//////////////////////////
1318
1419
Creating a time series mapping

0 commit comments

Comments
 (0)