feat(wal-g): install wal-g 3.0.8 alongside v2 (INDATA-904)#2266
Draft
Crispy1975 wants to merge 1 commit into
Draft
feat(wal-g): install wal-g 3.0.8 alongside v2 (INDATA-904)#2266Crispy1975 wants to merge 1 commit into
Crispy1975 wants to merge 1 commit into
Conversation
Adds a wal-g-3 nix package (v3.0.8) built and installed next to wal-g-2. The /usr/local/bin/wal-g symlink stays on v2, so v3 is available as wal-g-3 for backward-compat validation without changing the default. wal-g 3.x imports encoding/json/v2 directly, so the build needs GOEXPERIMENT=jsonv2 under Go 1.25 (threaded through walGCommon as a per-package goExperiment knob; v2 unaffected).
|
Blacksmith runners detected OOM events on the following jobs:
|
PostgreSQL Extension Dependency Analysis: PR #2266
SummaryNo extensions had dependencies with MAJOR version updates. Full Analysis ResultsPostgreSQL 15 Extension DependenciesPostgreSQL 17 Extension DependenciesOrioleDB 17 Extension Dependencies |
PostgreSQL Package Dependency Analysis: PR #2266
SummaryNo packages had MAJOR version updates. Full Analysis ResultsPostgreSQL 15 Dependency ChangesExtracting PostgreSQL 15 dependencies...
Runtime Closure Size
Raw Dependency ClosurePostgreSQL 17 Dependency ChangesExtracting PostgreSQL 17 dependencies...
Runtime Closure Size
Raw Dependency Closure |
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.
Installs wal-g 3.0.8 alongside v2 for the INDATA-904 backward-compat discovery. The
/usr/local/bin/wal-gsymlink stays on v2, so v3 ships aswal-g-3and can be exercised for validation without changing the fleet default (ticket's Option 2).Changes
nix/packages/wal-g.nix— newwal-g-3output (v3.0.8, binarywal-g-3)nix/packages/default.nix,nix/checks.nix— expose + CI-checkwal-g-3ansible/tasks/setup-wal-g.yml— install#wal-g-3; symlink left on v2sbpostgres_apparmor— Pix/ix allow rules forwal-g-3testinfra/test_ami_nix.py— AppArmor test parametrized over both binariesBuild note
Stock wal-g 3.x imports
encoding/json/v2directly (internal/uploader.go), which Go 1.25 gates behindGOEXPERIMENT=jsonv2. Threaded throughwalGCommonas a per-packagegoExperimentknob; v2 is unaffected. Verified locally:wal-g version 3.0.8.Ref: https://linear.app/supabase/issue/INDATA-904