https://github.com/juntaki/bucketsync
S3 backed FUSE Filesystem written in Go with dedup and encryption.
https://github.com/juntaki/bucketsync
deduplication filesystem fuse golang s3
Last synced: about 1 year ago
JSON representation
S3 backed FUSE Filesystem written in Go with dedup and encryption.
- Host: GitHub
- URL: https://github.com/juntaki/bucketsync
- Owner: juntaki
- License: mit
- Created: 2017-08-11T10:29:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-17T09:33:32.000Z (over 8 years ago)
- Last Synced: 2025-03-27T15:21:25.454Z (about 1 year ago)
- Topics: deduplication, filesystem, fuse, golang, s3
- Language: Go
- Homepage:
- Size: 42 KB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bucketsync
bucketsync is S3 backed FUSE Filesystem written in Golang. it can mount Amazon S3 as filesystem.
## Features
* Block-level deduplication
* Client side encryption
## How to use
Install
~~~
go get -u -v github.com/juntaki/bucketsync
~~~
Run
~~~
bucketsync config --bucket \
--region \
--accesskey \
--secretkey \
--password
bucketsync mount --dir /path/to/mountpoint
~~~
## TODO
- [ ] Performance improvement
- [ ] Client cache
- [ ] Reduce request
- [ ] Server side garbage collection
- [ ] Access control
- [ ] Stat FS / Quota
- [ ] Multi clients support (locking)