Mayank Jha
Mayank Jha

Reputation: 1029

How to increase the max_result_window in elasticsearch using a python script?

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.

Upvotes: 10

Views: 15320

Answers (2)

Diogo Publio
Diogo Publio

Reputation: 9

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}})

Upvotes: 1

ChintanShah25
ChintanShah25

Reputation: 12672

You need to use put_settings method.

es.indices.put_settings(index="index1",
                        body= {"index" : {
                                "max_result_window" : 500000
                              }})

Upvotes: 17

Related Questions