【发布时间】:2020-10-17 09:00:49
【问题描述】:
我可以使文档不可变吗?当文档提交到相同的 id 时,它们不会被重写吗?
POST "localhost:9200/index001/_doc/1" // First time it is created
'
{
"stuff": {
}
}
'
POST "localhost:9200/index001/_doc/1" // Fails
'
{
"otherstuff": {
}
}
'
弹性的 _version 字段可以帮助解决这个问题吗?
【问题讨论】: