Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nnhansg/1142e8a3cd22b3f78b5d94cdbe0924f8 to your computer and use it in GitHub Desktop.
Save nnhansg/1142e8a3cd22b3f78b5d94cdbe0924f8 to your computer and use it in GitHub Desktop.
ElasticSearch - Result window is too large, from + size must be less than or equal to: [10000]

Result window is too large, from + size must be less than or equal to: [10000] but was [1000000]. See the scroll api for a more efficient way to request large data sets. This limit can be set by changing the [index.max_result_window] index level parameter

I suppose the proper fix would be to modify the code to use the scroll API, but for a quick fix, you can use the following:

curl -XPUT http://localhost:9200/doraana/_settings -d '{ "index" : { "max_result_window" : 1000000 } }'

Use kibana

With Elastic server: http://localhost:9200/doraana, with index: doraana

PUT _settings
{
  "index": {
    "max_result_window": 1000000
  }
}

Use kibana for ElasticSearch 5

PUT doraana/_settings
{
  "index": {
    "max_result_window": 1000000
  }
}

Reference: https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules.htm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment