https://github.com/dineshdb/ddrive
https://github.com/dineshdb/ddrive
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dineshdb/ddrive
- Owner: dineshdb
- Created: 2024-11-22T09:28:09.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-01-14T11:26:59.000Z (4 months ago)
- Last Synced: 2025-01-18T23:19:05.739Z (4 months ago)
- Language: Rust
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Files
A deduplicated file manager using EROFS and ComposeFS like mechanism. Difference between this and composefs is that it allows modifying the filesystem.
## Features
- FS-verity and data verification on read
- Automatic file level deduplication
- High performance due to erofs overlay mounting (read-only). EROFS mounts are readonly. We need to make the write requests go through fuse layer to make it work. After each write, we need to generate a new erofs image. However, the erofs contains only metadata and hence will be only few mbs. All the mounted fs should be remounted after the regeneration.## Non-goals
- Versioned filesystem for backups