X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-config%2Fsrc%2Fmain%2Fresources%2Finitial%2Fdatastore.cfg;h=cafe375f8b5f27653b26e3347bb94c83d9477383;hp=cfbf9450aa2b77661f21bd00904a995b48c9c3d7;hb=b3cc695157dc7e8f3f7698ebc34403be57c65636;hpb=07267ef7e2e6d46c3a514a978a8dbb266966176c diff --git a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/datastore.cfg b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/datastore.cfg index cfbf9450aa..cafe375f8b 100644 --- a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/datastore.cfg +++ b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/datastore.cfg @@ -51,7 +51,7 @@ operational.persistent=false # The number of transaction modification operations (put, merge, delete) to batch before sending to the # shard transaction actor. Batching improves performance as less modifications messages are sent to the # actor and thus lessens the chance that the transaction actor's mailbox queue could get full. -#shard-batched-modification-count=100 +#shard-batched-modification-count=1000 # The maximum amount of time for akka operations (remote or local) to complete before failing. #operation-timeout-in-seconds=5 @@ -73,3 +73,13 @@ operational.persistent=false # The maximum queue size for each shard's data store executor. #max-shard-data-store-executor-queue-size=5000 +# A fully qualified java class name. The class should implement +# org.opendaylight.controller.cluster.raft.policy.RaftPolicy. This java class should be +# accessible to the distributed data store OSGi module so that it can be dynamically loaded via +# reflection. For now let's assume that these classes to customize raft behaviors should be +# present in the distributed data store module itself. If this property is set to a class which +# cannot be found then the default raft policy will be applied +#custom-raft-policy-implementation= + +# The maximum size (in bytes) for snapshot chunks to be sent during sync +#shard-snapshot-chunk-size=20480000