| 设置单次最大查询量 | _settings | {“index”:{“max_result_window”:“1000000”}} |
| 查询全部 | _search | {“query”:{“match_all”:{}}} return root; |
| 分页查询 | _search | {“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}},“from”:0,“size”:50,“sort”:[],“aggs”:{}} return root; |
| 排序查询 | _search | {“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}},“sort”:{“create_time”:{“order”:“desc”}}} return root; |
| 查询全部 | _search | {“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root; |
| 根据条件查询 | _search | {“query”:{“bool”:{“must”:[{“term”:{“ci_etl_key”:“ci_etl_key”}}],“must_not”:[],“should”:[]}}} |
| 总数 | _count | {“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root; |
| 删除全部 | _delete_by_query | {“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root; |