Skip to content

Commit d9de49f

Browse files
Update docs for v8.11.0 release (#101689)
* Update docs for v8.11.0 release * Update docs/reference/migration/migrate_8_11.asciidoc --------- Co-authored-by: Abdon Pijpelink <[email protected]>
1 parent a64c0b9 commit d9de49f

File tree

2 files changed

+61
-16
lines changed

2 files changed

+61
-16
lines changed

docs/reference/migration/migrate_8_11.asciidoc

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,32 @@ The `transport_versions` subobject of the response to `GET _cluster/state` has b
4040
If needed, retrieve the per-node transport versions from the `nodes_versions` subobject.
4141
====
4242

43+
44+
[discrete]
45+
[[deprecated-8.11]]
46+
=== Deprecations
47+
48+
The following functionality has been deprecated in {es} 8.11
49+
and will be removed in a future version.
50+
While this won't have an immediate impact on your applications,
51+
we strongly encourage you to take the described steps to update your code
52+
after upgrading to 8.11.
53+
54+
To find out if you are using any deprecated functionality,
55+
enable <<deprecation-logging, deprecation logging>>.
56+
57+
[discrete]
58+
[[deprecations_811_rollup]]
59+
==== Rollup deprecations
60+
61+
[[rollup_functionality_deprecated]]
62+
.Rollup functionality is now deprecated
63+
[%collapsible]
64+
====
65+
*Details* +
66+
<<xpack-rollup,Rollup functionality>> has been deprecated and will be removed in a future release. Previously, rollups were available in technical preview.
67+
68+
*Impact* +
69+
Use <<downsampling,downsampling>> to reduce storage costs for time series data by storing it at reduced granularity.
70+
====
71+

docs/reference/release-notes/8.11.0.asciidoc

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Cluster Coordination::
4747
Data streams::
4848
* DSL waits for the tsdb time boundaries to lapse {es-pull}100470[#100470] (issue: {es-issue}99696[#99696])
4949
* Propagate cancellation in `DataTiersUsageTransportAction` {es-pull}100253[#100253]
50+
* [DSL] skip deleting indices that have in-progress downsampling operations {es-pull}101495[#101495]
5051

5152
Downsampling::
5253
* Make downsample target index replicas configurable {es-pull}99712[#99712]
@@ -55,29 +56,33 @@ ES|QL::
5556
* "params" correctly parses the values including an optional "type" {es-pull}99310[#99310] (issue: {es-issue}99294[#99294])
5657
* Account for an exception being thrown when building a `BytesRefArrayBlock` {es-pull}99726[#99726] (issue: {es-issue}99472[#99472])
5758
* Add arithmetic operators {es-pull}98628[#98628]
59+
* Add identity check in Block equality {es-pull}100377[#100377] (issue: {es-issue}100374[#100374])
60+
* Adds Enrich implicit `match_fields` to `field_caps` call {es-pull}101456[#101456] (issue: {es-issue}101328[#101328])
5861
* Better management of not stored TEXT fiels with synthetic source {es-pull}99695[#99695]
5962
* Continue resolving attributes for Eval {es-pull}99601[#99601] (issue: {es-issue}99576[#99576])
6063
* Create a Vector when needed for IN {es-pull}99382[#99382] (issue: {es-issue}99347[#99347])
61-
* ESQL: Add identity check in Block equality {es-pull}100377[#100377] (issue: {es-issue}100374[#100374])
62-
* ESQL: Fix NPE when aggregating literals {es-pull}99827[#99827]
63-
* ESQL: Fix escaping of backslash in LIKE operator {es-pull}101120[#101120] (issue: {es-issue}101106[#101106])
64-
* ESQL: Graceful handling of non-bool condition in the filter {es-pull}100645[#100645] (issues: {es-issue}100049[#100049], {es-issue}100409[#100409])
65-
* ESQL: Handle queries with non-existing enrich policies and no field {es-pull}100647[#100647] (issue: {es-issue}100593[#100593])
66-
* ESQL: Improve verifier error for incorrect agg declaration {es-pull}100650[#100650] (issue: {es-issue}100641[#100641])
67-
* ESQL: Limit how many bytes `concat()` can process {es-pull}100360[#100360]
68-
* ESQL: Page shouldn't close a block twice {es-pull}100370[#100370] (issues: {es-issue}100356[#100356], {es-issue}100365[#100365])
69-
* ESQL: Preserve intermediate aggregation output in local relation {es-pull}100866[#100866] (issue: {es-issue}100807[#100807])
70-
* ESQL: Properly handle multi-values in fold() and date math {es-pull}100766[#100766] (issue: {es-issue}100497[#100497])
71-
* ESQL: Remove aliasing inside Eval {es-pull}100238[#100238] (issue: {es-issue}100174[#100174])
72-
* ESQL: Support date and time intervals as input params {es-pull}101001[#101001] (issue: {es-issue}99570[#99570])
73-
* ESQL: `mv_expand` pushes down limit and project and keep the limit after it untouched {es-pull}100782[#100782] (issues: {es-issue}99971[#99971], {es-issue}100774[#100774])
74-
* ESQL: fix non-null value being returned for unsupported data types in `ValueSources` {es-pull}100656[#100656] (issue: {es-issue}100048[#100048])
75-
* ESQL: support metric tsdb fields while querying index patterns {es-pull}100351[#100351] (issue: {es-issue}100144[#100144])
64+
* ESQL: check type before casting {es-pull}101492[#101492] (issue: {es-issue}101489[#101489])
65+
* Fix NPE when aggregating literals {es-pull}99827[#99827]
66+
* Fix escaping of backslash in LIKE operator {es-pull}101120[#101120] (issue: {es-issue}101106[#101106])
67+
* Fix eval of functions on foldable literals {es-pull}101438[#101438] (issue: {es-issue}101425[#101425])
68+
* Fix non-null value being returned for unsupported data types in `ValueSources` {es-pull}100656[#100656] (issue: {es-issue}100048[#100048])
69+
* Graceful handling of non-bool condition in the filter {es-pull}100645[#100645] (issues: {es-issue}100049[#100049], {es-issue}100409[#100409])
70+
* Handle queries with non-existing enrich policies and no field {es-pull}100647[#100647] (issue: {es-issue}100593[#100593])
7671
* Implement serialization of `InvalidMappedField` {es-pull}98972[#98972] (issue: {es-issue}98851[#98851])
72+
* Improve verifier error for incorrect agg declaration {es-pull}100650[#100650] (issue: {es-issue}100641[#100641])
73+
* Limit how many bytes `concat()` can process {es-pull}100360[#100360]
74+
* Make DISSECT parameter `append_separator` case insensitive {es-pull}101358[#101358] (issue: {es-issue}101138[#101138])
75+
* Page shouldn't close a block twice {es-pull}100370[#100370] (issues: {es-issue}100356[#100356], {es-issue}100365[#100365])
76+
* Preserve intermediate aggregation output in local relation {es-pull}100866[#100866] (issue: {es-issue}100807[#100807])
77+
* Properly handle multi-values in fold() and date math {es-pull}100766[#100766] (issue: {es-issue}100497[#100497])
78+
* Remove aliasing inside Eval {es-pull}100238[#100238] (issue: {es-issue}100174[#100174])
7779
* Resilience to non-indexed fields {es-pull}99588[#99588] (issue: {es-issue}99506[#99506])
7880
* Skip synthetic attributes when planning the physical fragment {es-pull}99188[#99188] (issue: {es-issue}99170[#99170])
81+
* Support date and time intervals as input params {es-pull}101001[#101001] (issue: {es-issue}99570[#99570])
7982
* Support queries that don't return underlying fields {es-pull}98759[#98759] (issue: {es-issue}98404[#98404])
8083
* Use exact attributes for data source extraction {es-pull}99874[#99874] (issue: {es-issue}99183[#99183])
84+
* `mv_expand` pushes down limit and project and keep the limit after it untouched {es-pull}100782[#100782] (issues: {es-issue}99971[#99971], {es-issue}100774[#100774])
85+
* support metric tsdb fields while querying index patterns {es-pull}100351[#100351] (issue: {es-issue}100144[#100144])
8186

8287
Geo::
8388
* Use `NamedWritable` to enable `GeoBoundingBox` serialisation {es-pull}99163[#99163] (issue: {es-issue}99089[#99089])
@@ -103,6 +108,7 @@ Infra/Scripting::
103108
* Improve painless error wrapping {es-pull}100872[#100872]
104109

105110
Ingest Node::
111+
* Improving tika handling {es-pull}101486[#101486]
106112
* Update enrich execution to only set index false on fields that support it {es-pull}98038[#98038] (issue: {es-issue}98019[#98019])
107113

108114
Machine Learning::
@@ -144,10 +150,12 @@ Security::
144150
* Fix NullPointerException in RotableSecret {es-pull}100779[#100779] (issue: {es-issue}99759[#99759])
145151

146152
Snapshot/Restore::
153+
* Fix snapshot double finalization {es-pull}101497[#101497]
147154
* Fix thread context in `getRepositoryData` {es-pull}99627[#99627]
148155
* Frozen index input clone copy cache file {es-pull}98930[#98930]
149156
* Make S3 anti-contention delay configurable {es-pull}101245[#101245]
150157
* More robust timeout for repo analysis {es-pull}101184[#101184] (issue: {es-issue}101182[#101182])
158+
* Register `repository_s3` settings {es-pull}101344[#101344]
151159
* Reinstate `RepositoryData` BwC {es-pull}100447[#100447]
152160

153161
TSDB::
@@ -157,12 +165,20 @@ TSDB::
157165

158166
Transform::
159167
* Fix possible NPE when getting transform stats for failed transforms {es-pull}98061[#98061] (issue: {es-issue}98052[#98052])
168+
* Ignore `IndexNotFound` error when refreshing destination index {es-pull}101627[#101627]
160169
* Make Transform Feature Reset really wait for all the tasks {es-pull}100624[#100624]
161170
* Make tasks that calculate checkpoints cancellable {es-pull}100808[#100808]
162171

163172
Watcher::
164173
* Treating watcher webhook response header names as case-insensitive {es-pull}99717[#99717]
165174

175+
[[deprecation-8.11.0]]
176+
[float]
177+
=== Deprecations
178+
179+
Rollup::
180+
* Rollup functionality is now deprecated {es-pull}101265[#101265]
181+
166182
[[enhancement-8.11.0]]
167183
[float]
168184
=== Enhancements
@@ -207,6 +223,7 @@ ES|QL::
207223
* Log start and end of queries {es-pull}99746[#99746]
208224
* Lower the implicit limit, if none is user-provided {es-pull}99816[#99816] (issue: {es-issue}99458[#99458])
209225
* Mark counter fields as unsupported {es-pull}99054[#99054]
226+
* Remove the swapped-args check for date_xxx() {es-pull}101362[#101362] (issue: {es-issue}99562[#99562])
210227
* Serialize the source in expressions {es-pull}99956[#99956]
211228
* Simple check if all blocks get released {es-pull}100199[#100199]
212229
* Support unsigned long in sqrt and log10 {es-pull}98711[#98711]
@@ -254,7 +271,6 @@ Search::
254271
* Add additional counters to `_clusters` response for all Cluster search states {es-pull}99566[#99566] (issue: {es-issue}98927[#98927])
255272
* Adding support for exist queries to `sparse_vector` fields {es-pull}99775[#99775] (issue: {es-issue}99319[#99319])
256273
* Make `_index` optional for pinned query docs {es-pull}97450[#97450]
257-
* Optimize ContentPath#pathAsText {es-pull}98244[#98244] (issue: {es-issue}94544[#94544])
258274
* Reduce copying when creating scroll/PIT ids {es-pull}99219[#99219]
259275
* Refactor `SearchResponseClusters` to use CHM {es-pull}100129[#100129] (issue: {es-issue}99101[#99101])
260276
* Support cluster/details for CCS minimize_roundtrips=false {es-pull}98457[#98457]

0 commit comments

Comments
 (0)