Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. odl-cluster-data {
  2. bounded-mailbox {
  3. mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
  4. mailbox-capacity = 1000
  5. mailbox-push-timeout-time = 100ms
  6. }
  7.  
  8. metric-capture-enabled = true
  9.  
  10. akka {
  11. loglevel = "INFO"
  12. loggers = ["akka.event.slf4j.Slf4jLogger"]
  13.  
  14. actor {
  15. provider = "akka.cluster.ClusterActorRefProvider"
  16. serializers {
  17. java = "akka.serialization.JavaSerializer"
  18. proto = "akka.remote.serialization.ProtobufSerializer"
  19. readylocal = "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransactionSerializer"
  20. }
  21.  
  22. serialization-bindings {
  23. "com.google.protobuf.Message" = proto
  24. "org.opendaylight.controller.cluster.datastore.messages.ReadyLocalTransaction" = readylocal
  25. }
  26.  
  27. default-dispatcher {
  28. # Setting throughput to 1 makes the dispatcher fair. It processes 1 message from
  29. # the mailbox before moving on to the next mailbox
  30. throughput = 1
  31. }
  32.  
  33. default-mailbox {
  34. # When not using a BalancingDispatcher it is recommended that we use the SingleConsumerOnlyUnboundedMailbox
  35. # as it is the most efficient for multiple producer/single consumer use cases
  36. mailbox-type="akka.dispatch.SingleConsumerOnlyUnboundedMailbox"
  37. }
  38. }
  39. remote {
  40. log-remote-lifecycle-events = off
  41. netty.tcp {
  42. hostname = "192.168.0.6"
  43. port = 2550
  44. maximum-frame-size = 419430400
  45. send-buffer-size = 52428800
  46. receive-buffer-size = 52428800
  47. }
  48. }
  49.  
  50. cluster {
  51. seed-nodes = ["akka.tcp://opendaylight-cluster-data@192.168.0.6:2550","akka.tcp://opendaylight-cluster-data@192.168.0.7:2550","akka.tcp://opendaylight-cluster-data@192.168.0.8:2550"]
  52.  
  53.  
  54. auto-down-unreachable-after = 300s
  55.  
  56. roles = [
  57. "node-33"
  58. ]
  59.  
  60. }
  61.  
  62. persistence {
  63. # By default the snapshots/journal directories live in KARAF_HOME. You can choose to put it somewhere else by
  64. # modifying the following two properties. The directory location specified may be a relative or absolute path.
  65. # The relative path is always relative to KARAF_HOME.
  66.  
  67. # snapshot-store.local.dir = "target/snapshots"
  68. # journal.leveldb.dir = "target/journal"
  69.  
  70. }
  71. }
  72. }
  73.  
  74. odl-cluster-rpc {
  75. bounded-mailbox {
  76. mailbox-type = "org.opendaylight.controller.cluster.common.actor.MeteredBoundedMailbox"
  77. mailbox-capacity = 1000
  78. mailbox-push-timeout-time = 100ms
  79. }
  80.  
  81. metric-capture-enabled = true
  82.  
  83. akka {
  84. loglevel = "INFO"
  85. loggers = ["akka.event.slf4j.Slf4jLogger"]
  86.  
  87. actor {
  88. provider = "akka.cluster.ClusterActorRefProvider"
  89.  
  90. }
  91. remote {
  92. log-remote-lifecycle-events = off
  93. netty.tcp {
  94. hostname = "192.168.0.6"
  95. port = 2551
  96. maximum-frame-size = 419430400
  97. send-buffer-size = 52428800
  98. receive-buffer-size = 52428800
  99. }
  100. }
  101.  
  102. cluster {
  103. seed-nodes = ["akka.tcp://odl-cluster-rpc@192.168.0.6:2551","akka.tcp://odl-cluster-rpc@192.168.0.7:2551","akka.tcp://odl-cluster-rpc@192.168.0.8:2551"]
  104. auto-down-unreachable-after = 300s
  105. }
  106. }
  107. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement