From 25a1daa0d291b22e61e00be02f6ca8ab55012da0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Thu, 11 Jun 2020 16:05:36 +0200 Subject: [PATCH] Majority plus in docs --- akka-docs/src/main/paradox/typed/cluster-sharding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/src/main/paradox/typed/cluster-sharding.md b/akka-docs/src/main/paradox/typed/cluster-sharding.md index f9c8cce3d7..5a94ec7408 100644 --- a/akka-docs/src/main/paradox/typed/cluster-sharding.md +++ b/akka-docs/src/main/paradox/typed/cluster-sharding.md @@ -284,7 +284,7 @@ akka.cluster.sharding.state-store-mode = ddata ``` The state of the `ShardCoordinator` is replicated across the cluster but is not stored to disk. -@ref:[Distributed Data](distributed-data.md) handles the `ShardCoordinator`'s state with `WriteMajority`/`ReadMajority` consistency. +@ref:[Distributed Data](distributed-data.md) handles the `ShardCoordinator`'s state with `WriteMajorityPlus`/`ReadMajorityPlus` consistency. When all nodes in the cluster have been stopped, the state is no longer needed and dropped. Cluster Sharding uses its own Distributed Data `Replicator` per node.