I know, we can use the curl to increase the max_result_window as something like:
curl -XPUT "http://localhost:9200/index1/_settings" -d '{ "index" : { "max_result_window" : 500000} }'
But How do I do the same using python?
My code
es = Elasticsearch(['http://localhost:9200'])
res = es.search(index="index1", doc_type="log",size=10000, from_=0, body={ "query": {
....query starts
}})
My question is how,do I change the setting for max_result_window here.
Use cURL and make an XGET request You can check if a cluster in Elasticsearch is running with the integral requests library. Alternatively, you can use a method of Elasticsearch's library low-level client. Try this cURL rquest to check if a cluster in Elasticsearch is active.
You need to use put_settings method.
es.indices.put_settings(index="index1",
body= {"index" : {
"max_result_window" : 500000
}})
In case somebody is searching for a ElasticSearch Ruby solution, what worked for me on ES version 5 was:
es.indices.put_settings(body: {index: {max_result_window: 500000}})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With