Files
doc-exports/docs/css/umn/css_02_0125.html
zhengxiu 93d856d5c5 css umn 25.6.0 version
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com>
Co-authored-by: zhengxiu <zhengxiu@huawei.com>
Co-committed-by: zhengxiu <zhengxiu@huawei.com>
2025-11-25 11:34:43 +00:00

2.2 KiB
Raw Permalink Blame History

How Do I Change the Maximum Number of Results Returned in Response to a Single Search Request to a Specific Index in a CSS 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 command on a server (a non-security mode cluster is used as an example here):

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

    localhost indicates the address of the Elasticsearch cluster.

This setting affects the consumption of memory and CPU resources. Exercise caution when setting this parameter.