Update a specific field in elastic search document

Viewed 7434

I am trying to update a document in elasticsearch,but instead the document gets deleted

POST /index/type/id/
{
   "id":1
   "field:"modified"
}

What is the way to update a particular field in a document?The document contains an id field by which it is indexed.

2 Answers
Related