feat: add Google Cloud Storage backend - #1
Open
dylayed wants to merge 1 commit into
Open
Conversation
dylayed
force-pushed
the
gcs-support-review
branch
from
August 7, 2026 16:22
81f48f8 to
001fe73
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 7, 2026 17:24
001fe73 to
ac214ea
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 7, 2026 17:58
ac214ea to
365b403
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 7, 2026 19:40
365b403 to
0a384c1
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 8, 2026 01:08
0a384c1 to
eca158b
Compare
dylayed
force-pushed
the
gcs-support-review
branch
2 times, most recently
from
August 8, 2026 02:32
4d9c858 to
4c78306
Compare
dylayed
force-pushed
the
gcs-support-review
branch
4 times, most recently
from
August 8, 2026 03:35
aeec7fc to
f82b778
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 8, 2026 03:44
f82b778 to
63298c8
Compare
dylayed
force-pushed
the
gcs-support-review
branch
2 times, most recently
from
August 8, 2026 13:51
0df5c6a to
a74334d
Compare
dylayed
force-pushed
the
gcs-support-review
branch
3 times, most recently
from
August 8, 2026 14:24
8e9fd78 to
51298ad
Compare
dylayed
force-pushed
the
gcs-support-review
branch
2 times, most recently
from
August 8, 2026 20:17
b22f13d to
7ab4b19
Compare
dylayed
force-pushed
the
gcs-support-review
branch
8 times, most recently
from
August 9, 2026 16:17
a3e72b4 to
54c8f18
Compare
dylayed
force-pushed
the
gcs-support-review
branch
2 times, most recently
from
August 9, 2026 17:06
4307511 to
bcd0ea5
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 9, 2026 22:39
bcd0ea5 to
e975f0f
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 10, 2026 01:25
e975f0f to
2f93322
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 10, 2026 01:37
2f93322 to
3df26bf
Compare
dylayed
force-pushed
the
gcs-support-review
branch
3 times, most recently
from
August 10, 2026 17:18
62d2a5e to
af5f9ce
Compare
dylayed
force-pushed
the
gcs-support-review
branch
from
August 10, 2026 18:23
af5f9ce to
ec57467
Compare
Select GCS explicitly with gs:// bucket URIs, authenticate through Google Application Default Credentials, and translate object generations into the shared conditional-write version contract.
dylayed
force-pushed
the
gcs-support-review
branch
from
August 10, 2026 18:39
ec57467 to
935b3d4
Compare
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
This adds Google Cloud Storage as an alternative backend on top of #2. An exact
gs://BUCKETtarget selects GCS; existing bare bucket names ands3://BUCKETcontinue to select S3.GCS uses Application Default Credentials and object generations for conditional writes. Deployment uploads, runtime bucket access, ownership, leases, and LTX replication all use the selected backend.
Approach
gs://BUCKETwith no endpoint or region identity.versionvalue used by the ownership code. Conditional-write retries remain disabled.celld-ltxobject-store conformance suite against GCS beside the MinIO integration test.This is intentionally a narrow first integration: no bucket prefixes, emulator support, or cross-provider migration.
Review
The main things to review are provider selection and enrollment normalization, ADC setup, and generation-based CAS in
crates/celld/storage_backend.rs. Most other changes make existing output and documentation name the selected provider correctly.Review #2 first. The two PRs are linked in native stack #3.
Validation
celld-ltxS3/GCS test build pass.