[DOCS] Fix `search.max_buckets` default (#66311) (#66313)

This commit is contained in:
James Rodewig 2020-12-15 08:18:02 -05:00 committed by GitHub
parent 01d54d222b
commit e9382487a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ define fixed number of multiple buckets, and others dynamically create the bucke
NOTE: The maximum number of buckets allowed in a single response is limited by a NOTE: The maximum number of buckets allowed in a single response is limited by a
dynamic cluster setting named dynamic cluster setting named
<<search-settings-max-buckets,`search.max_buckets`>>. It defaults to 65,535, <<search-settings-max-buckets,`search.max_buckets`>>. It defaults to 65,535.
requests that try to return more than the limit will fail with an exception. Requests that try to return more than the limit will fail with an exception.
include::bucket/adjacency-matrix-aggregation.asciidoc[] include::bucket/adjacency-matrix-aggregation.asciidoc[]

View File

@ -22,6 +22,6 @@ few resources.
`search.max_buckets`:: `search.max_buckets`::
(<<cluster-update-settings,Dynamic>>, integer) (<<cluster-update-settings,Dynamic>>, integer)
Maximum number of <<search-aggregations-bucket,aggregation buckets>> allowed in Maximum number of <<search-aggregations-bucket,aggregation buckets>> allowed in
a single response. Defaults to `10000`. a single response. Defaults to 65,535.
+ +
Requests that attempt to return more than this limit will return an error. Requests that attempt to return more than this limit will return an error.