s3d
is an S3 daemon for the Edge written in RustThe goal of s3d
is to provide a daemon for edge platforms (e.g. factory servers π planes π© ships π’ cars π laptops π» mobile devices π± wearables β ...) that connect to a central object storage (aka Hub).
Since edge applications operate in subideal environments (high latency network, disconnections, hardware failures, eavesdropping, ...), s3d
aims to make the applications run smoothly while it handles the flows of data, security, networking, local capacity, metadata caching, write queueing, etc.
Worth mentioning that the choice of the Rust language is a natural fit for the edge systems, as it is a modern language with a focus on functionality, safety and performance. s3d
builds with the rust toolchain into a single binary that loads a yaml config file, which makes it easy to set up and configure in standalone linux or containerized environments like Kubernetes.
This project is still πΈπΈπΈ Experimental πππ
This means it's a great time to affect its direction!
If you find it interesting or want to contribute, please feel free to communicate using these options:
To start using s3d
you need to install it, run it, and configure your data workflows.
The following steps illustrate a basic flow of s3d usage:
```sh
cargo install s3d
s3d init
s3d run s3d start s3d stop
s3d fetch [bucket/prefix]
s3d pull [bucket/prefix]
s3d get bucket/key > file s3d put bucket/key < file s3d ls [bucket/prefix]
s3d diff [bucket/prefix]
s3d status [bucket/prefix]
s3d push [bucket/prefix]
s3d prune [bucket/prefix] ```