Elasticsearch 버전 제어
2848 단어 elasticsearch
버전 제어
Elasticsearch는 낙관적인 자물쇠를 사용하여 데이터의 일치성을 확보한다. 즉, 사용자가document(문서, 즉 관계 데이터베이스에 있는 표의 데이터)를 조작할 때 이document에 대해 자물쇠를 채우고 잠금을 해제하는 작업을 할 필요가 없고 조작할 버전만 지정하면 된다.버전 번호가 일치하면 Elasticsearch는 이 동작을 순조롭게 진행할 수 있고, 버전 번호가 충돌하면 Elasticsearch는 충돌을 제시하고 이상을 던집니다. (Version Conflict Engine Exception)
# ,
PUT /lib/user/1?version=3
{
"frist_name": "Jane",
"last_name": "Smith",
"age": 32,
"about": "I like to collect rock albums",
"interests": ["music"]
}
# ,
{
"error":{
"root_case":[
{
"type": "version_conflict_engine_exception",
"reason": "[user][4]: version conflict,current version [2] is different than the one provided [3]",
"index_uuid": "ICnRur_NTn2s9sM04XE_rQ",
"shard": "0",
"index": "lib"
}
],
"type": "version_conflict_engine_exception",
"reason": "[user][4]: version conflict,current version [2] is different than the one provided [3]",
"index_uuid": "ICnRur_NTn2s9sM04XE_rQ",
"shard": "0",
"index": "lib"
},
"status": 409
}
Elasticsearch의 버전 번호는 1부터 2^63-1까지 범위가 지정됩니다.
유지하기 위해_version은 외부 버전에서 제어하는 데이터와 일치합니다. version_type=external
# ,
PUT /lib/user/1?version=3&version_type=external
{
"frist_name": "Jane",
"last_name": "Smith",
"age": 32,
"about": "I like to collect rock albums",
"interests": ["music"]
}
# version_type=external ,
# version ( 3, 3),
#
{
"error":{
"root_case":[
{
"type": "version_conflict_engine_exception",
"reason": "[user][4]: version conflict,current version [2] is different than the one provided [3]",
"index_uuid": "ICnRur_NTn2s9sM04XE_rQ",
"shard": "0",
"index": "lib"
}
],
"type": "version_conflict_engine_exception",
"reason": "[user][4]: version conflict,current version [2] is different than the one provided [3]",
"index_uuid": "ICnRur_NTn2s9sM04XE_rQ",
"shard": "0",
"index": "lib"
},
"status": 409
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
kafka connect e elasticsearch를 관찰할 수 있습니다.No menu lateral do dashboard tem a opção de connectors onde ele mostra todos os clusters do kafka connect conectados atu...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.