You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2021/09/10 01:03:20 UTC

[brooklyn-dist] 01/02: improve comments on HA in config

This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-dist.git

commit 103603b1741721849d55f6b047caf685a2e5fb33
Author: Alex Heneveld <al...@cloudsoftcorp.com>
AuthorDate: Fri Sep 10 02:01:00 2021 +0100

    improve comments on HA in config
---
 .../src/main/resources/org.apache.brooklyn.osgilauncher.cfg       | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/karaf/config/src/main/resources/org.apache.brooklyn.osgilauncher.cfg b/karaf/config/src/main/resources/org.apache.brooklyn.osgilauncher.cfg
index 125cabf..957be16 100644
--- a/karaf/config/src/main/resources/org.apache.brooklyn.osgilauncher.cfg
+++ b/karaf/config/src/main/resources/org.apache.brooklyn.osgilauncher.cfg
@@ -35,15 +35,17 @@ default.catalog.location=${karaf.etc}/default.catalog.bom
 #ignorePersistenceErrors=true
 
 # The high availability mode. Possible values are:
-# - DISABLED: management node works in isolation - will not cooperate with any other standby/master nodes in management plane;
-# - AUTO: will look for other management nodes, and will allocate itself as standby or master based on other nodes' states;
+# - AUTO: (default) will look for other management nodes, and will allocate itself as standby or master based on other nodes' states,
+#   using HOT_STANDBY as the preferred standby unless the `defaultStandbyIsHot` experimental feature is set false;
 # - MASTER: will startup as master - if there is already a master then fails immediately;
+# - DISABLED: management node works in isolation - will not cooperate with any other standby/master nodes in management plane,
+#   will assume no other nodes are using the same persisted state, and may break persistence if other nodes are;
 # - STANDBY: will start up as lukewarm standby with no state - if there is not already a master then fails immediately,
 #   and if there is a master which subsequently fails, this node can promote itself;
 # - HOT_STANDBY: will start up as hot standby in read-only mode - if there is not already a master then fails immediately,
 #   and if there is a master which subsequently fails, this node can promote itself;
 # - HOT_BACKUP: will start up as hot backup in read-only mode - no master is required, and this node will not become a master
-#highAvailabilityMode=DISABLED
+#highAvailabilityMode=AUTO
 
 # The persistence mode. Possible values are:
 # - AUTO: (default) will rebind to any existing state, or start up fresh if no state;