Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pages/clustering/high-availability.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,11 @@ network communication could be set up incorrectly, etc. The user can remove the
UNREGISTER INSTANCE instanceName;
```

At the moment of registration, the instance that you want to unregister must not be MAIN because unregistering MAIN could lead to an inconsistent cluster state.
When unregistering an instance, ensure that the instance being unregistered is
**not** the MAIN instance. Unregistering MAIN can lead to an inconsistent
cluster state. Additionally, the cluster must have an **alive** MAIN instance
during the unregistration process. If no MAIN instance is available, the
operation cannot be guaranteed to succeed.

The instance requested to be unregistered will also be unregistered from the current MAIN's REPLICA set.

Expand Down