rememberingEntities with ddata mode, #22154
* one Replicator per configured role * log LMDB directory at startup * clarify the imporantce of the LMDB directory * use more than one key to support many entities
This commit is contained in:
parent
8fd5b7e53e
commit
37679d307e
23 changed files with 713 additions and 337 deletions
|
|
@ -112,6 +112,17 @@ akka.cluster.sharding {
|
|||
# The "role" of the singleton configuration is not used. The singleton role will
|
||||
# be the same as "akka.cluster.sharding.role".
|
||||
coordinator-singleton = ${akka.cluster.singleton}
|
||||
|
||||
# Settings for the Distributed Data replicator. Used when state-store-mode=ddata.
|
||||
# Same layout as akka.cluster.distributed-data.
|
||||
# The "role" of the distributed-data configuration is not used. The distributed-data
|
||||
# role will be the same as "akka.cluster.sharding.role".
|
||||
# Note that there is one Replicator per role and it's not possible
|
||||
# to have different distributed-data settings for different sharding entity types.
|
||||
distributed-data = ${akka.cluster.distributed-data}
|
||||
distributed-data {
|
||||
durable.keys = ["shard-*"]
|
||||
}
|
||||
|
||||
# The id of the dispatcher to use for ClusterSharding actors.
|
||||
# If not specified default dispatcher is used.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue