修改es查询结果的最大显示长度
# curl -H "Content-Type: application/json" -XPUT http://xxx.xx.xx.xx:9200/supplier_flow_index/_settings -d '{ "index" : { "max_result_window" : 100000000}}'
xxx.xx.xx.xx主机地址,supplier_flow_index是索引名称
s中默认最大长度为10000条
在使用setFrom()和setSize()组合分页的的时候,若页码数太大,显示的数据量超过10000条时,,需要修改最大显示长度。