From 1b2f032084fc334f1027524afe40c608706c56e3 Mon Sep 17 00:00:00 2001 From: Oleksii Mozghovyi Date: Sat, 27 Mar 2021 00:21:41 +0200 Subject: [PATCH] Use correct failure detector for akka clustering Since we are not using classic remoting, we need to use proper tuning for clustering's failure-detector. Correct the template to reflect that. Change-Id: I4bff994b786237778df5bdfb83df858b00b549ed Signed-off-by: Oleksii Mozghovyi Signed-off-by: Robert Varga --- .../src/main/resources/initial/akka.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf index 2c179d79a9..0a71fd416b 100644 --- a/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf +++ b/opendaylight/md-sal/sal-clustering-config/src/main/resources/initial/akka.conf @@ -8,11 +8,6 @@ odl-cluster-data { canonical.hostname = "127.0.0.1" canonical.port = 2550 } - # when under load we might trip a false positive on the failure detector - # transport-failure-detector { - # heartbeat-interval = 4 s - # acceptable-heartbeat-pause = 16s - # } } cluster { @@ -23,6 +18,11 @@ odl-cluster-data { "member-1" ] + # when under load we might trip a false positive on the failure detector + # failure-detector { + # heartbeat-interval = 4 s + # acceptable-heartbeat-pause = 16s + # } } persistence { -- 2.36.6