docs(plugin_configuration): clarify clusterName uniqueness scope - #41
Open
gabriele-wolfox wants to merge 2 commits into
Open
docs(plugin_configuration): clarify clusterName uniqueness scope#41gabriele-wolfox wants to merge 2 commits into
gabriele-wolfox wants to merge 2 commits into
Conversation
The clusterName field is the identity key for a cluster's WAL/backup stream on the Klio server it registers with, but this was only documented as an override field without noting its scope. Two clusters in different namespaces sharing the same clusterName on one server get WAL streaming rejected with a system ID mismatch error, which is safe but previously undocumented. Fixes #40 Signed-off-by: Gabriele Quaresima <gabriele.quaresima@enterprisedb.com>
gabriele-wolfox
force-pushed
the
dev/8999
branch
from
August 5, 2026 13:23
7343727 to
74fdd4e
Compare
hh24k
reviewed
Aug 11, 2026
The uniqueness warning only covered concurrent reuse of clusterName across namespaces. Deleting a cluster and later reusing its clusterName on the same server hits the same system ID mismatch error, since the server has no way to tell the old cluster is gone. Co-authored-by: Hai He <hai.he@enterprisedb.com> Signed-off-by: Gabriele Quaresima <gabriele.quaresima@enterprisedb.com>
hh24k
approved these changes
Aug 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
clusterNamefield is the identity key for a cluster's WAL/backup stream on the Klio server it registers with, but this was only documented as an override field without noting its scope.Two clusters in different namespaces sharing the same
clusterNameon one server get WAL streaming rejected with a system ID mismatch error, which is safe but previously undocumented.Fixes #40