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.
wanggang b9f23abf96
continuous-integration/drone/push Build is failing Details
remove go modules Dockerfile.dev,add Dockerfile.dev to docker folder
4 years ago
..
Config disable dssupport at docker-compose.dev.yml 4 years ago
Const 'commit' 5 years ago
Html update 5 years ago
Model update 5 years ago
MyModel 'commit' 4 years ago
Router 'commit' 5 years ago
Shell 'commit' 5 years ago
Test 'commit' 5 years ago
Tools update 5 years ago
Utils 'commit' 5 years ago
docs 'commit' 5 years ago
models 'commit' 5 years ago
ReadMe 'commit' 5 years ago
go.mod 'commit' 5 years ago
go.sum 'commit' 5 years ago
main.go 'commit' 5 years ago
一键发布.cmd update 5 years ago

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