強整合性とは?
強整合性は、書き込みが確認されると、それ以降のすべての読み取りがシステム全体でその書き込みまたはより後の書き込みを観測するモデルです。クライアントは新しい値がコミットされた後に古い値を見ることは決してありません。これを達成するには通常、コンセンサスプロトコルや同期レプリケーションといった協調が必要です。
なぜ重要か
強整合性は分散ストアに対する推論を単一マシンと同じくらい単純にし、残高、lock、カウンターにとって重要です。その代償は、パーティション中のより高いレイテンシと可用性の低下です。
関連ガイド
Eventual Consistency - CI/CD Glossary DefinitionEventual consistency means replicas may briefly disagree after a write but converge to the same value over ti…
What Is a Quorum Read?A quorum read queries enough replicas that their responses overlap with the replicas a write touched, ensurin…
What Is a Consensus Quorum?A consensus quorum is the minimum number of nodes that must agree for a distributed system to commit a decisi…