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.
黄海 70778c4b47
commit
4 years ago
..
Config 'commit' 4 years ago
Const
Html/Icon commit 4 years ago
MiddleWare 'commit' 4 years ago
Model
MyModel 'commit' 4 years ago
Router
Shell
Test
Tools
Utils
docs
models
ReadMe
go.mod commit 4 years ago
go.sum commit 4 years ago
main.go 'commit' 4 years ago
一键发布.cmd

ReadMe

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条即 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}}'