Files
doc-exports/docs/css/umn/en-us_topic_0000001527697781.html
Zheng, Xiu 2dfeaff8f9 css umn 23.5.1 20240520
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: Zheng, Xiu <zhengxiu@huawei.com>
Co-committed-by: Zheng, Xiu <zhengxiu@huawei.com>
2024-06-06 16:15:58 +00:00

1.9 KiB
Raw Permalink Blame History

How Do I Set the Default Maximum Number of Records Displayed on a Page for an Elasticsearch Cluster

Solution

  • Method 1

    Open Kibana and run the following commands on the Dev Tools page:

    PUT _all/_settings?preserve_existing=true
    {
    "index.max_result_window" : "10000000"
    }
  • Method 2

    Run the following commands in the background:

    curl XPUT 'http://localhost:9200/_all/_setting?preserve_existing=true'-d
    {
    "index.max_result_window":"1000000"
    }

This configuration consumes memory and CPU resources. Exercise caution when setting this parameter.