I am using Elastic Search data format plugin and my requirement is to request a large data set nearly 1 million records. But whenever I request above 10 000 I get the error as below:
Result window is too large, from + size must be less than or equal to: [10000] but was [100000]. 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 setting."
I tried to change my default page allocation as:
http://1.2.3.4:9200/index/_settings -d '{ "index" : { "max_result_window" : 1000000}}'
But things are not working for me. Is there is any other alternate?
I am using Elastic Search 5.4 Data Format plugin as Master