Skip to content

Commit 131d314

Browse files
author
elasticsearchmachine
committed
Merge remote-tracking branch 'origin/main' into lucene_snapshot
2 parents 4f118fb + d34c563 commit 131d314

File tree

99 files changed

+2640
-1162
lines changed

Some content is hidden

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

99 files changed

+2640
-1162
lines changed

docs/changelog/114193.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114193
2+
summary: Add postal_code support to the City and Enterprise databases
3+
area: Ingest Node
4+
type: enhancement
5+
issues: []

docs/changelog/114268.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114268
2+
summary: Support more maxmind fields in the geoip processor
3+
area: Ingest Node
4+
type: enhancement
5+
issues: []

docs/changelog/114521.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114521
2+
summary: Add support for registered country fields for maxmind geoip databases
3+
area: Ingest Node
4+
type: enhancement
5+
issues: []

docs/changelog/114548.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 114548
2+
summary: Support IPinfo database configurations
3+
area: Ingest Node
4+
type: enhancement
5+
issues: []

docs/changelog/114934.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 114934
2+
summary: "[ES|QL] To_DatePeriod and To_TimeDuration return better error messages on\
3+
\ `union_type` fields"
4+
area: ES|QL
5+
type: bug
6+
issues: []

docs/changelog/116447.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 116447
2+
summary: Adding a deprecation info API warning for data streams with old indices
3+
area: Data streams
4+
type: enhancement
5+
issues: []

docs/changelog/116583.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pr: 116583
2+
summary: Fix NPE in `EnrichLookupService` on mixed clusters with <8.14 versions
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 116529
7+
- 116544

docs/reference/connector/docs/connectors-release-notes.asciidoc

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
<titleabbrev>Release notes</titleabbrev>
55
++++
66

7-
[INFO]
7+
[NOTE]
88
====
9-
Prior to version 8.16.0, the connector release notes were published as part of the https://www.elastic.co/guide/en/enterprise-search/current/changelog.html[Enterprise Search documentation].
9+
Prior to version *8.16.0*, the connector release notes were published as part of the {enterprise-search-ref}/changelog.html[Enterprise Search documentation].
1010
====
11+
12+
*Release notes*:
13+
14+
* <<es-connectors-release-notes-8-16-0>>
15+
16+
include::release-notes/connectors-release-notes-8.16.0.asciidoc[]
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
[[es-connectors-release-notes-8-16-0]]
2+
=== 8.16.0 connectors release notes
3+
4+
[discrete]
5+
[[es-connectors-release-notes-deprecation-notice]]
6+
==== Deprecation notices
7+
8+
* *Direct index access for connectors and sync jobs*
9+
+
10+
IMPORTANT: Directly accessing connector and sync job state through `.elastic-connectors*` indices is deprecated, and will be disallowed entirely in a future release.
11+
12+
* Instead, the Elasticsearch Connector APIs should be used. Connectors framework code now uses the <<connector-apis,Connector APIs>> by default.
13+
See https://github.com/elastic/connectors/pull/2884[*PR 2902*].
14+
15+
* *Docker `enterprise-search` namespace deprecation*
16+
+
17+
IMPORTANT: The `enterprise-search` Docker namespace is deprecated and will be discontinued in a future release.
18+
+
19+
Starting in `8.16.0`, Docker images are being transitioned to the new `integrations` namespace, which will become the sole location for future releases. This affects the https://github.com/elastic/connectors[Elastic Connectors] and https://github.com/elastic/data-extraction-service[Elastic Data Extraction Service].
20+
+
21+
During this transition period, images are published to both namespaces:
22+
+
23+
** *Example*:
24+
+
25+
Deprecated namespace::
26+
`docker.elastic.co/enterprise-search/elastic-connectors:v8.16.0`
27+
+
28+
New namespace::
29+
`docker.elastic.co/integrations/elastic-connectors:v8.16.0`
30+
+
31+
Users should migrate to the new `integrations` namespace as soon as possible to ensure continued access to future releases.
32+
33+
[discrete]
34+
[[es-connectors-release-notes-8-16-0-enhancements]]
35+
==== Enhancements
36+
37+
* Docker images now use Chainguard's Wolfi base image (`docker.elastic.co/wolfi/jdk:openjdk-11-dev`), replacing the previous `ubuntu:focal` base.
38+
39+
* The Sharepoint Online connector now works with the `Sites.Selected` permission instead of the broader permission `Sites.Read.All`.
40+
See https://github.com/elastic/connectors/pull/2762[*PR 2762*].
41+
42+
* Starting in 8.16.0, connectors will start using proper SEMVER, with `MAJOR.MINOR.PATCH`, which aligns with Elasticsearch/Kibana versions. This drops the previous `.BUILD` suffix, which we used to release connectors between Elastic stack releases. Going forward, these inter-stack-release releases will be suffixed instead with `+<timestamp>`, aligning with Elastic Agent and conforming to SEMVER.
43+
See https://github.com/elastic/connectors/pull/2749[*PR 2749*].
44+
45+
* Connector logs now use UTC timestamps, instead of machine-local timestamps. This only impacts logging output.
46+
See https://github.com/elastic/connectors/pull/2695[*PR 2695*].
47+
48+
[discrete]
49+
[[es-connectors-release-notes-8-16-0-bug-fixes]]
50+
==== Bug fixes
51+
52+
* The Dropbox connector now fetches the files from team shared folders.
53+
See https://github.com/elastic/connectors/pull/2718[*PR 2718*].

docs/reference/datatiers.asciidoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ TIP: The performance of an {es} node is often limited by the performance of the
3737
For example hardware profiles, refer to Elastic Cloud's {cloud}/ec-reference-hardware.html[instance configurations].
3838
Review our recommendations for optimizing your storage for <<indexing-use-faster-hardware,indexing>> and <<search-use-faster-hardware,search>>.
3939

40-
IMPORTANT: {es} generally expects nodes within a data tier to share the same
41-
hardware profile. Variations not following this recommendation should be
42-
carefully architected to avoid <<hotspotting,hot spotting>>.
40+
IMPORTANT: {es} assumes nodes within a data tier share the same hardware profile (such as CPU, RAM, disk capacity).
41+
Data tiers with unequally resourced nodes have a higher risk of <<hotspotting,hot spotting>>.
4342

4443
The way data tiers are used often depends on the data's category:
4544

0 commit comments

Comments
 (0)