Skip to content

[8.4][DOCS] Adds ML-related release highlights #89078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/changelog/83055.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,14 @@ summary: New `frequent_items` aggregation
area: Machine Learning
type: enhancement
issues: []
highlight:
title: Frequent itemset aggregation
body: |-
The
{ref}/search-aggregations-bucket-frequent-items-aggregation.html[frequent items aggregation]
is a new bucket aggregation which identifies items that often occur together.
It is a form of association rules mining that helps to discover relationships
between different data points. For example, the aggregation can find log
events that tend to co-occur and may give a more informative explanation for
the possible causes of a spike in the logs.
notable: true
13 changes: 13 additions & 0 deletions docs/changelog/87361.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,17 @@ summary: "Implement per-transform num_failure_retries setting"
area: Transform
type: enhancement
issues: []
highlight:
title: Infinite and adaptive retries for transforms
body: |-
Infinite and adaptive retries – available in 8.4 – makes it possible for
transforms to recover after a failure without any user intervention. Retries
can be configured per transform. The transform retries become less frequent
progressively. The interval between retries doubles after reaching a one-hour
threshold. This is because the possibility that retries solve the problem is
less likely after each failed retry.

In the *Transforms* page in *{stack-manage-app}* in {kib}, the number of retries
can be configured when creating a new transform or editing an existing one.
notable: true

21 changes: 21 additions & 0 deletions docs/changelog/88589.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pr: 88589
summary: Make composite aggs in datafeeds Generally Available
area: Machine Learning
type: feature
issues: []
highlight:
title: Composite aggregations in datafeeds are Generally Available
body: |-
The support for
{ml-docs}/ml-configuring-aggregation.html#aggs-using-composite[composite aggregations]
in datafeeds is now generally available.

[discrete]
[[early-stopping-dfa]]
=== Early stopping for data frame analytics
Data frame analytics is even faster in 8.4. The new function automatically
stops the process of hyperparameter optimization early in case of the
accuracy gain for a different set of hyperparameter values would be
insignificant. The early stopping of the optimization process results in a
shorter runtime for the data frame analytics job.
notable: true