feat(services): split cacache, dbfs, dropbox, etcd, foundationdb into separate crates#7031
Merged
Xuanwo merged 5 commits intoapache:mainfrom Dec 17, 2025
Merged
Conversation
9dbd0b4 to
c835481
Compare
Member
|
Hi, @tao12345666333 can you help fix the faied CI? I think it's better to get this PR in first to avoid large conflicts. |
… separate crates This PR extracts the following services into their own crates: - cacache -> opendal-service-cacache (closes apache#6883) - dbfs -> opendal-service-dbfs (closes apache#6889) - dropbox -> opendal-service-dropbox (closes apache#6890) - etcd -> opendal-service-etcd (closes apache#6891) - foundationdb -> opendal-service-foundationdb (closes apache#6892) Each service is now a standalone crate under core/services/ with: - Its own Cargo.toml with service-specific dependencies - Re-exported through the main opendal crate via feature flags - Registration with DEFAULT_OPERATOR_REGISTRY via ctor The public API remains unchanged - users can still access these services through opendal::services::{ServiceName} when the corresponding feature flag is enabled.
c835481 to
cb22753
Compare
koushiro
reviewed
Dec 17, 2025
koushiro
reviewed
Dec 17, 2025
koushiro
reviewed
Dec 17, 2025
Co-authored-by: Qinxuan Chen <[email protected]>
Co-authored-by: Qinxuan Chen <[email protected]>
Co-authored-by: Qinxuan Chen <[email protected]>
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 extracts the following services into their own crates as part of the core split initiative (#6829):
opendal-service-cacache(closes [core split] Service: cacache #6883)opendal-service-dbfs(closes [core split] Service: dbfs #6889)opendal-service-dropbox(closes [core split] Service: dropbox #6890)opendal-service-etcd(closes [core split] Service: etcd #6891)opendal-service-foundationdb(closes [core split] Service: foundationdb #6892)Changes
Each service is now a standalone crate under
core/services/with:Cargo.tomlwith service-specific dependenciesDEFAULT_OPERATOR_REGISTRYvia ctorAPI Compatibility
The public API remains unchanged - users can still access these services through
opendal::services::{ServiceName}when the corresponding feature flag is enabled.Testing
cargo check -p opendal-service-cacachecargo check -p opendal-service-dbfscargo check -p opendal-service-dropboxcargo check -p opendal-service-etcdcargo check -p opendal-service-foundationdbcargo check -p opendalAI Usage Statement
Claude Code + Claude 4.5 Opus