From fe1459fcbcadcf5df5de37e36ed9a748134694c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Andr=C3=A9n?= Date: Wed, 2 Jun 2021 11:57:51 +0200 Subject: [PATCH] Small clarification of recovery strategy in config (#30167) --- akka-cluster-sharding/src/main/resources/reference.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/akka-cluster-sharding/src/main/resources/reference.conf b/akka-cluster-sharding/src/main/resources/reference.conf index f8bf055241..5c5088f20c 100644 --- a/akka-cluster-sharding/src/main/resources/reference.conf +++ b/akka-cluster-sharding/src/main/resources/reference.conf @@ -158,7 +158,8 @@ akka.cluster.sharding { shard-region-query-timeout = 3 s # The shard uses this strategy to determines how to recover the underlying entity actors. The strategy is only used - # by the persistent shard when rebalancing or restarting. The value can either be "all" or "constant". The "all" + # by the persistent shard when rebalancing or restarting and is applied per remembered shard starting up (not for + # entire shard region). The value can either be "all" or "constant". The "all" # strategy start all the underlying entity actors at the same time. The constant strategy will start the underlying # entity actors at a fix rate. The default strategy "all". entity-recovery-strategy = "all"