查询 - 查询所在索引目录的区域
GET _search
{
"query": {
"match": {
"_index": "index_name"
}
}
}
GET index_name/_search
{
"query": {
"match": {
"_id": "thisIsIdentity"
}
}
}
删除
GET index_name/_delete_by_query { "query": { "match": { "_id": "thisIsIdentity" } } }