Can logstash run partial updates reading from a logfile?
Example: index contains fields ID (used as document id), NAME, VALUE
I read data from a logfile made of json lines and containing updates on the same records
{ "id": "1", "name": "Aldo", "value": "1111" }
{ "id": "2", "name": "Giovanni", "value": "2222" }
{ "id": "3", "name": "Giacomo", "value": "3333" }
{ "id": "1", "name": "Aldo", "value": "4444" }
I'm trying to manage lines containing only a subset of fields, like:
{ "id": "1", "value": "5555" }
This does not update the document with ID=1, can someone confirm that Logstash cannot manage partial updates of documents?
Thanks,
L