You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

es本身默认限制了查找的量为10000条<span class="ambiguous-code-point tooltip" data-content=", [U+FF0C] is confusable with , [U+002C]"><span class="char">,</span></span>即 from+size&lt;=10000
解决方法:
# 修改es中所有的index配置
curl -H &#34;Content-Type: application/json&#34; -XPUT http://127.0.0.1:9200/_settings -d &#39;{ &#34;index&#34; : { &#34;max_result_window&#34; : 1000000000}}&#39;