Better description of real-memory breaker changes to aggs (#57306)

The old description mentions a setting that we ended up not merging.
The periodic real-memory checks are automatic and do not require
the user to configure any setting.
This commit is contained in:
Zachary Tong 2020-06-01 14:58:20 -04:00 committed by GitHub
parent 50a8779c94
commit 4dc12633cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 5 deletions

View File

@ -86,11 +86,10 @@ therefore helps interpret these results.
[float] [float]
=== Finer memory control for bucket aggregations === Finer memory control for bucket aggregations
We introduced a new `search.check_buckets_step_size` setting to While building buckets, aggregations will now periodically check the
better control how the coordinating node allocates memory when aggregating real-memory circuit breaker before continuing to allocate more buckets. This
buckets. The allocation of buckets is now be done in steps, each step allows better responsivity to memory pressure and avoids `OutOfMemory`
allocating a number of buckets equal to this setting. To avoid an `OutOfMemory` situations due to allocating more buckets than the node can handle.
error, a parent circuit breaker check is performed on allocation.
// end::notable-highlights[] // end::notable-highlights[]