Elasticsearch

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

joonsei 2022. 5. 17. 10:36
# 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": "writer"
        }
      }
    }
  }
}
'