Skip to content
Merged
Show file tree
Hide file tree
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
Submodule client updated 52 files
+2 −7 .github/CODEOWNERS
+43 −42 .github/copilot-instructions.md
+1 −1 .github/workflows/auto-assign.yml
+1 −1 .github/workflows/ci.yml
+3 −3 .github/workflows/docker.yml
+9 −8 .github/workflows/release.yml
+394 −120 Cargo.lock
+19 −16 Cargo.toml
+9 −5 ci/Dockerfile
+9 −5 ci/Dockerfile.debug
+5 −2 ci/Dockerfile.dfinit
+1 −1 dragonfly-client-backend/examples/plugin/src/lib.rs
+95 −12 dragonfly-client-backend/src/http.rs
+78 −265 dragonfly-client-backend/src/object_storage.rs
+18 −0 dragonfly-client-config/src/dfctl.rs
+1 −0 dragonfly-client-config/src/lib.rs
+102 −0 dragonfly-client-metric/src/lib.rs
+3 −1 dragonfly-client-util/Cargo.toml
+24 −0 dragonfly-client-util/examples/request/Cargo.toml
+23 −0 dragonfly-client-util/examples/request/README.md
+54 −0 dragonfly-client-util/examples/request/src/bin/get.rs
+49 −0 dragonfly-client-util/examples/request/src/bin/preheat.rs
+27 −9 dragonfly-client-util/src/ratelimiter/bbr.rs
+306 −33 dragonfly-client-util/src/request/mod.rs
+51 −10 dragonfly-client-util/src/sysinfo/cpu.rs
+17 −3 dragonfly-client-util/src/sysinfo/disk.rs
+41 −14 dragonfly-client-util/src/sysinfo/memory.rs
+6 −1 dragonfly-client-util/src/sysinfo/network.rs
+31 −2 dragonfly-client/Cargo.toml
+38 −7 dragonfly-client/src/announcer/mod.rs
+15 −1 dragonfly-client/src/bin/dfcache/export.rs
+16 −1 dragonfly-client/src/bin/dfcache/import.rs
+8 −1 dragonfly-client/src/bin/dfcache/stat.rs
+121 −0 dragonfly-client/src/bin/dfctl/main.rs
+334 −0 dragonfly-client/src/bin/dfctl/persistent_cache_task.rs
+338 −0 dragonfly-client/src/bin/dfctl/persistent_task.rs
+540 −0 dragonfly-client/src/bin/dfctl/task.rs
+18 −4 dragonfly-client/src/bin/dfdaemon/main.rs
+60 −15 dragonfly-client/src/bin/dfget/main.rs
+37 −11 dragonfly-client/src/bin/dfstore/export.rs
+36 −11 dragonfly-client/src/bin/dfstore/import.rs
+472 −44 dragonfly-client/src/grpc/dfdaemon_download.rs
+77 −70 dragonfly-client/src/grpc/dfdaemon_upload.rs
+1 −1 dragonfly-client/src/grpc/middleware.rs
+1 −1 dragonfly-client/src/grpc/mod.rs
+70 −14 dragonfly-client/src/proxy/header.rs
+7 −4 dragonfly-client/src/proxy/mod.rs
+155 −96 dragonfly-client/src/resource/parent_selector.rs
+68 −1 dragonfly-client/src/resource/persistent_cache_task.rs
+62 −1 dragonfly-client/src/resource/persistent_task.rs
+355 −202 dragonfly-client/src/resource/piece_collector.rs
+66 −15 dragonfly-client/src/resource/task.rs
2 changes: 1 addition & 1 deletion manager/console
Submodule console updated 39 files
+2 −7 .github/CODEOWNERS
+2 −1 .github/workflows/ci.yaml
+5 −4 .github/workflows/e2e.yaml
+2 −1 .github/workflows/lint.yaml
+1 −1 .github/workflows/release.yml
+1 −0 .gitignore
+11 −2 cypress.config.ts
+2,264 −0 cypress/e2e/clusters/blacklist-detail.cy.ts
+1,043 −0 cypress/e2e/clusters/blacklist.cy.ts
+5 −28 cypress/e2e/clusters/cluster.cy.ts
+336 −0 cypress/e2e/clusters/information.cy.ts
+9 −3 cypress/e2e/menu/menu.cy.ts
+3 −18 cypress/e2e/peers/peers.cy.ts
+6 −2 package.json
+929 −0 src/components/clusters/blacklist.tsx
+1 −1 src/components/clusters/edit.module.css
+19 −8 src/components/clusters/edit.tsx
+1 −1 src/components/clusters/index.tsx
+341 −2 src/components/clusters/information.module.css
+408 −69 src/components/clusters/information.tsx
+1 −1 src/components/clusters/new.module.css
+17 −7 src/components/clusters/new.tsx
+1 −1 src/components/clusters/peers/inde.module.css
+3 −30 src/components/clusters/peers/index.tsx
+3 −3 src/components/clusters/schedulers/index.tsx
+1 −1 src/components/clusters/seed-peers/index.tsx
+697 −0 src/components/clusters/urls-dialog.module.css
+318 −0 src/components/clusters/urls-dialog.tsx
+1 −1 src/components/developer/tokens/index.tsx
+2 −2 src/components/gc/audit/index.tsx
+4 −4 src/components/gc/job/index.tsx
+1 −1 src/components/job/preheats/index.tsx
+88 −75 src/components/job/preheats/new.tsx
+3 −3 src/components/loading-button.tsx
+1 −1 src/components/resource/persistent-cache-task/show.tsx
+6 −6 src/components/resource/task/clear/index.tsx
+1 −1 src/components/users/index.tsx
+13 −0 src/index.css
+22 −0 src/lib/api.ts
Loading