es本身默认限制了查找的量为10000条,即 from+size<=10000 解决方法: # 修改es中所有的index配置 curl -H "Content-Type: application/json" -XPUT http://127.0.0.1:9200/_settings -d '{ "index" : { "max_result_window" : 1000000000}}'