Can I make documents immutable? As in not have them be rewritten when a document is submitted to the same id?
POST "localhost:9200/index001/_doc/1" // First time it is created
'
{
"stuff": {
}
}
'
POST "localhost:9200/index001/_doc/1" // Fails
'
{
"otherstuff": {
}
}
'
Could elastic's _version field help with that?