diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-01-23 18:28:29 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-01-23 18:29:02 +0100 |
commit | 538a72d1982e1fd2e3cf582b427e8d84e7edf708 (patch) | |
tree | 76a3f3ca0c9a06af1ae0adae01e68517e42d0764 /src/Technique/Développement/Garage/index.md | |
parent | 8f3b18f6285ef50ff337b267f300ea9260fe42fb (diff) | |
download | site-538a72d1982e1fd2e3cf582b427e8d84e7edf708.tar.gz site-538a72d1982e1fd2e3cf582b427e8d84e7edf708.zip |
Refactor website
Diffstat (limited to 'src/Technique/Développement/Garage/index.md')
-rw-r--r-- | src/Technique/Développement/Garage/index.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Technique/Développement/Garage/index.md b/src/Technique/Développement/Garage/index.md new file mode 100644 index 0000000..d710788 --- /dev/null +++ b/src/Technique/Développement/Garage/index.md @@ -0,0 +1,28 @@ +# Garage + +Garage is a lightweight AWS S3-compatible distributed object store, with the following goals: + + - As self-contained as possible + - Easy to set up + - Highly resilient to network failures, network latency, disk failures, sysadmin failures + - Relatively simple + - Made for multi-datacenter deployments + +Non-goals include: + + - Extremely high performance + - Complete implementation of the S3 API + - Erasure coding (our replication model is simply to copy the data as is on several nodes) + +Currently, Garage is deployed on our cluster (this very website is hosted on garage!) but must be considered as a technical preview. + +If you want to learn more about Garage, you can check our documentation: + - [Quickstart](/Technique/Développement/Garage/Quickstart.html), learn how to quickly interact with garage. + - [Related Work](/Technique/Développement/Garage/Related%20Work.html), understand why we decided to build a new software instead of using existing ones. + - [Internals](/Technique/Développement/Garage/Internals.html), contains a quick description of the data models that are used in Garage. + +External links: + - [Repository](https://git.deuxfleurs.fr/Deuxfleurs/garage/), Garage is a free software, developed on our own Gitea instance + +Talks: + - [(fr, informal) 2020-12-02 Why we decided to reinvent the wheel](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/master/doc/20201202_talk/talk.pdf) |