I need to fetch more than 10000 records from Elasticsearch but I'm unable to set the index.max_result_window
in Elasticsearch 7.2 from python.
I had used the following command to set the window limit to 100000
in Elasticsearch V6 which was working.
es.indices.create(index=prod_index, body={"settings": {"index.mapping.total_fields.limit": 50000, "index.max_result_window" : 100000})
The same command is not working in Elasticsearch 7.2