Is it possible to add additional fields to existing documents in elasticsearch?
I indexed, for example, the following document:
{ "user":"xyz", "message":"for increase in fields" }
Now I want to add another 1 ie date field to it:
{ "user":"xyz", "message":"for increase in fields", "date":"2013-06-12" }
How can I do that?
source share