mirror of
https://github.com/thousmile/molly-multi-tenant.git
synced 2025-12-30 12:42:26 +00:00
52 lines
817 B
HTTP
52 lines
817 B
HTTP
### 查询索引
|
||
GET {{esUrl}}/_cat/indices?v
|
||
Content-Type: application/json
|
||
|
||
|
||
### 索引排序
|
||
GET {{esUrl}}/_cat/indices/master_*?v&s=docs.count:desc
|
||
Content-Type: application/json
|
||
|
||
|
||
### 查询索引映射
|
||
GET {{esUrl}}/google_dms_device_log
|
||
Content-Type: application/json
|
||
|
||
|
||
### 删除索引
|
||
DELETE {{esUrl}}/master_lms_login_log
|
||
Content-Type: application/json
|
||
|
||
|
||
### 修改索引,默认分片和副本
|
||
POST {{esUrl}}/_template/default_template
|
||
Content-Type: application/json
|
||
|
||
{
|
||
"index_patterns": [
|
||
"*"
|
||
],
|
||
"settings": {
|
||
"number_of_shards": 1,
|
||
"number_of_replicas": 0
|
||
}
|
||
}
|
||
|
||
|
||
|
||
### 查询索引映射
|
||
GET {{esUrl}}/google_lms_oper_log/_search
|
||
Content-Type: application/json
|
||
|
||
{
|
||
"query": {
|
||
"match_all": {}
|
||
},
|
||
"sort": [
|
||
{
|
||
"createTime": {
|
||
"order": "desc"
|
||
}
|
||
}
|
||
]
|
||
} |