feat: url-pipeline core — parser, adapter ABC, registry, store hooks - #4192
Draft
jhamman wants to merge 1 commit into
Draft
feat: url-pipeline core — parser, adapter ABC, registry, store hooks#4192jhamman wants to merge 1 commit into
jhamman wants to merge 1 commit into
Conversation
d-v-b
reviewed
Jul 28, 2026
jhamman
force-pushed
the
feature/url-pipeline-core
branch
2 times, most recently
from
July 28, 2026 14:52
10cb73b to
3aa63ac
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4192 +/- ##
==========================================
+ Coverage 93.91% 93.97% +0.06%
==========================================
Files 91 93 +2
Lines 12678 12805 +127
==========================================
+ Hits 11906 12033 +127
Misses 772 772
🚀 New features to boost your workflow:
|
jhamman
force-pushed
the
feature/url-pipeline-core
branch
2 times, most recently
from
July 30, 2026 04:47
151be2d to
55cf114
Compare
Implements URL pipeline support (https://github.com/jbms/url-pipeline): '|'-chained URLs resolve through pluggable adapters registered under the 'zarr.url_adapters' entry-point group (entry-point name = URL scheme). - zarr.abc.url_pipeline: PipelineSegment, AdapterResolution, PipelineContext, URLPipelineAdapter (single-classmethod contract) - zarr.storage._url_pipeline: parse_pipeline / resolve_pipeline; the root sub-URL delegates to make_store so existing file/memory/fsspec routing is unchanged - registry: register_url_adapter / get_url_adapter / list_url_adapter_schemes (name check only; no adapter imports) - make_store/make_store_path route strings containing '|' (or a registered root scheme) through the resolver; residual store paths combine with the user-supplied path - StorePath gains a zarr_format attribute (populated by format segments in a follow-up) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
jhamman
force-pushed
the
feature/url-pipeline-core
branch
from
July 30, 2026 04:52
55cf114 to
effd07c
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 PR delivers the core infrastructure for plugable URL pipeline parsing.
Implements URL pipeline support (https://github.com/jbms/url-pipeline): '|'-chained URLs are resolves through pluggable adapters registered under the 'zarr.url_adapters' entry-point group (entry-point name = URL scheme).
zarr.abc.url_pipeline:PipelineSegment,AdapterResolution,PipelineContext,URLPipelineAdapter(single-classmethod contract)zarr.storage._url_pipeline:parse_pipeline/resolve_pipeline; the root sub-URL delegates to make_store so existing file/memory/fsspec routing is unchangedregistry:register_url_adapter/get_url_adapter/list_url_adapter_schemes(name check only; no adapter imports)make_store/make_store_pathroute strings containing '|' (or a registered root scheme) through the resolver; residual store paths combine with the user-supplied pathStorePathgains azarr_formatattribute (populated by format segments in a follow-up)For reviewers
This is PR 2 in a series towards #2943
Author attestation
TODO
docs/user-guide/*.mdchanges/