An open API service indexing awesome lists of open source software.

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.

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)