delete_by_query

    조건에 따른 특정 Document 데이터 삭제

    # 1341번 게시글 삭제curl -XPOST "localhost:9200/board-202205/_delete_by_query" -H 'Content-Type: application/json' -d '{ "query": { "match": { "_id": "1341" } }}'# writer 필드가 없는 게시글 일괄 삭제curl -XPOST "localhost:9200/board-202205/_delete_by_query" -H 'Content-Type: application/json' -d '{ "query": { "bool": { "must_not": { "exists": { "field": "wri..