Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.07 KB | None | 0 0
  1. engine.name=server
  2. db.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver
  3. db.url=jdbc:sqlserver://server:1433;dataasename=hello
  4.  
  5. # The database user that SymmetricDS should use.
  6. db.user=SA
  7.  
  8. # The database password
  9. db.password=secret
  10.  
  11. # Leave this blank to indicate this is the root node
  12. registration.url=
  13. sync.url=http://localhost:31415/sync/server
  14.  
  15. group.id=server
  16. external.id=000
  17.  
  18. # How often to run purge job,
  19. job.purge.period.time.ms=7200000
  20.  
  21. # How to run routing (in millis), which puts changes into batches.
  22. job.routing.period.time.ms=5000
  23.  
  24. # How often to run push (in millis), which sends changes to other nodes.
  25. job.push.period.time.ms=10000
  26.  
  27. # How often to run pull (in millis), which receives changes from other nodes.
  28. job.pull.period.time.ms=10000
  29.  
  30. # Automatically register new nodes when they request it.
  31. # If this is false, accept the registration requests using "symadmin open-registration" command.
  32. auto.registration=true
  33.  
  34. # When this node sends an initial load of data to another node, first send table create scripts.
  35. initial.load.create.first=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement