ES分組
GET index_user_latest/_search { "aggs": { "group_by_tags": { "terms": { "field": "telNum", "size": 10 } } } }
多條件查詢
GET index_user_latest/_search { "query": { "bool": { "must": [ { "match": { "telNum": "13277040656" } } ], "must_not": [ { "match": { "userId": 146540743 } } ] } } }
條件刪除
POST index_user_latest/_delete_by_query { "query": { "bool": { "must": [ { "match": { "isDelete": true } } ] } } }