Skip to content

Commit

Permalink
0000931: Add property that specifies minimum time between pushes and …
Browse files Browse the repository at this point in the history
…pulls. Default to 0 so pull and push periods have same behavior
  • Loading branch information
chenson42 committed Nov 30, 2012
1 parent f0471c2 commit cd837d4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions symmetric-core/src/main/resources/symmetric-default.properties
Expand Up @@ -429,18 +429,30 @@ cluster.lock.timeout.ms=1800000
# Type: boolean
cluster.lock.enabled=false

# This is how often the push job will be run.
# This is how often the push job will be run to schedule pushes to nodes.
#
# DatabaseOverridable: true
# Tags: jobs
job.push.period.time.ms=60000

# This is how often the pull job will be run.
# This is the minimum time that is allowed between pushes to a specific node.
#
# DatabaseOverridable: true
# Tags: jobs
push.period.minimum.ms=0

# This is how often the pull job will be run to schedule pulls of nodes.
#
# DatabaseOverridable: true
# Tags: jobs
job.pull.period.time.ms=60000

# This is the minimum time that is allowed between pulls of a specific node.
#
# DatabaseOverridable: true
# Tags: jobs
pull.period.minimum.ms=0

# This is how often accumulated statistics will be flushed out to the database from memory.
#
# DatabaseOverridable: true
Expand Down

0 comments on commit cd837d4

Please sign in to comment.