ref(vortex-io): unify cloud object storage api#8259
Open
m7kss1 wants to merge 7 commits into
Open
Conversation
22a64e7 to
bd6efc0
Compare
Consolidate cloud storage builders and resolvers from multiple integrations
(JNI, DuckDB, datafusion-bench) into a single canonical core module.
New:
- vortex-io/src/object_store/{cloud,registry}.rs with Registry and resolve_url
- VortexOpenOptions::open_url dispatcher for CLI and library users
- 'cloud' umbrella feature gating S3, GCS, Azure, HTTP support
Migrate:
- JNI, DuckDB, datafusion-bench to use core make_object_store
- CLI commands to accept remote URLs (s3://, gs://, az://)
Improvements:
- Consistent credential/endpoint handling across integrations
- First-class remote file support in vortex query/tree/browse/segments
Signed-off-by: Maxim Dergousov <dergousovmaxim99@gmail.com>
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
bd6efc0 to
70f771d
Compare
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
Contributor
Author
|
note: verified only on |
Contributor
|
Hi @m7kss1 thanks for your PR! I'll review it next week. |
Signed-off-by: Dergousov Maksim <dergousovmaxim99@gmail.com>
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
Cloud object store construction was duplicated across
vortex-jni,vortex-python,vortex-duckdbeach with different scheme coverage and credential behaviorNew API
CLI: now remote files work out of the box:
$ AWS_REGION=us-east-1 vx query s3://bucket/hits.vortex --sql "select count(*) from hits" $ vx tree gs://bucket/hits.vortex $ vx browse az://bucket/hits.vortexCloses: #000
Testing
AI disclosure: XXX