Small clarification of recovery strategy in config (#30167)

This commit is contained in:
Johan Andrén 2021-06-02 11:57:51 +02:00 committed by GitHub
parent 55840374f4
commit fe1459fcbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,8 @@ akka.cluster.sharding {
shard-region-query-timeout = 3 s 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 # 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 # 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 actors at a fix rate. The default strategy "all".
entity-recovery-strategy = "all" entity-recovery-strategy = "all"