es通过rest接口_search、_delete_by_query查询与删除数据

1、rest接口查询数据

rest查询:
http://localhost:9200/index_name/_search

查询表达式:

{
    "query": {
        "wildcard": {
            "accountID": {
                "value": "v*"
            }
        }
    }
}

postman请求截图:
es通过rest接口_search、_delete_by_query查询与删除数据_第1张图片
2、使用Rest接口删除数据

rest删除数据:
http://localhost:9200/index_name/_delete_by_query

查询表达式:

{
    "query": {
        "wildcard": {
            "accountID": {
                "value": "V*"
            }
        }
    }
}

postman请求截图:
es通过rest接口_search、_delete_by_query查询与删除数据_第2张图片

你可能感兴趣的:(elasticsearch,大数据)