Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client-rs
Submodule client-rs updated 32 files
+1 −1 .github/workflows/ci.yml
+91 −54 Cargo.lock
+14 −13 Cargo.toml
+1 −1 dragonfly-client-backend/Cargo.toml
+274 −0 dragonfly-client-backend/src/hdfs.rs
+73 −40 dragonfly-client-backend/src/http.rs
+57 −19 dragonfly-client-backend/src/lib.rs
+59 −50 dragonfly-client-backend/src/object_storage.rs
+2 −2 dragonfly-client-config/src/dfdaemon.rs
+71 −0 dragonfly-client-init/src/container_runtime/containerd.rs
+51 −0 dragonfly-client-init/src/container_runtime/crio.rs
+19 −24 dragonfly-client-storage/src/content.rs
+29 −31 dragonfly-client-storage/src/lib.rs
+80 −83 dragonfly-client-storage/src/metadata.rs
+18 −20 dragonfly-client-storage/src/storage_engine/rocksdb.rs
+29 −105 dragonfly-client-util/src/http/mod.rs
+2 −2 dragonfly-client/Cargo.toml
+21 −6 dragonfly-client/src/announcer/mod.rs
+28 −7 dragonfly-client/src/bin/dfdaemon/main.rs
+42 −16 dragonfly-client/src/bin/dfget/main.rs
+32 −26 dragonfly-client/src/grpc/dfdaemon_download.rs
+33 −31 dragonfly-client/src/grpc/dfdaemon_upload.rs
+1 −1 dragonfly-client/src/grpc/mod.rs
+11 −11 dragonfly-client/src/grpc/scheduler.rs
+207 −107 dragonfly-client/src/metrics/mod.rs
+13 −31 dragonfly-client/src/proxy/header.rs
+185 −164 dragonfly-client/src/proxy/mod.rs
+14 −21 dragonfly-client/src/resource/persistent_cache_task.rs
+46 −31 dragonfly-client/src/resource/piece.rs
+10 −13 dragonfly-client/src/resource/piece_collector.rs
+68 −75 dragonfly-client/src/resource/task.rs
+3 −2 dragonfly-client/src/tracing/mod.rs
Loading