diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-02-03 11:28:51 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-02-03 11:28:51 +0100 |
commit | 9343712ee788fd7453ba41b5e65cdbf33f4a18a3 (patch) | |
tree | b1be8be1ae11083f6f42505cc6517d1ca503c837 /src/Technique/Développement/Garage/index.md | |
parent | ce7820801a23ffd086495b4ba1b4de1d79637e32 (diff) | |
parent | 9d8201c3054c7ceed645742d7127e317aa16c586 (diff) | |
download | site-9343712ee788fd7453ba41b5e65cdbf33f4a18a3.tar.gz site-9343712ee788fd7453ba41b5e65cdbf33f4a18a3.zip |
Merge branch 'master' of git.deuxfleurs.fr:Deuxfleurs/site
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..67a016d --- /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](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/master/doc): + - [Quickstart](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/master/doc/Internals.md), learn how to quickly interact with garage. + - [Related Work](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/master/doc/Related%20Work.md), understand why we decided to build a new software instead of using existing ones. + - [Internals](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/master/doc/Internals.md), 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) |