Support mixed Citus 12/13/14 versions during pgmongo upgrades - #8853
Closed
DmitriMelnikov wants to merge 3 commits into
Closed
DmitriMelnikov wants to merge 3 commits into
DmitriMelnikov wants to merge 3 commits into
Conversation
added 3 commits
July 29, 2026 16:31
…e when gateway routes traffic to the nodes on citus 14 binary with citus 12 catalog. To avoid unavailability at that period we lift the version checks
Author
|
Closing because this targets the future 14.3 development branch and is unrelated to the requested 14.2-only backport of #8676. |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## release-14.0 #8853 +/- ##
================================================
- Coverage 88.72% 88.54% -0.19%
================================================
Files 287 289 +2
Lines 63266 64560 +1294
Branches 7931 8118 +187
================================================
+ Hits 56133 57163 +1030
- Misses 4864 5049 +185
- Partials 2269 2348 +79 🚀 New features to boost your workflow:
|
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.
Summary
Motivation
pgmongo upgrades nodes incrementally. During that window, the coordinator can be on Citus 14 while workers remain on Citus 12/13. A promoted standby can also temporarily run Citus 14 binaries with a Citus 12 catalog before the local
ALTER EXTENSION citus UPDATEconvergence step. Stock version checks and newer wire/catalog assumptions make those transitional states unavailable.Validation
ALTER EXTENSION citus UPDATERelease targeting
Published releases currently include
v14.1.0andv14.2.0. Therelease-14.0branch has already advanced to14.3.0, so merging this PR there targets the future 14.3 release.If this support is also required in the already-published 14.2 line, it must be shipped through a 14.2 patch release (for example,
v14.2.1) from a dedicated maintenance branch or via the maintainers' chosen backport process; an existing release tag cannot be changed.