aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-02-28 13:48:45 +0100
committerAlex Auvolat <alex@adnab.me>2024-02-28 13:48:45 +0100
commita294dd9473fb47e142d0dbac7028481ff00f921e (patch)
treea4ce7cc13340c2aa2c9671f124a84f7c96662fa5 /doc
parent947973982d3e9876e1bee8534e63a8ffcd6c0d8d (diff)
downloadgarage-a294dd9473fb47e142d0dbac7028481ff00f921e.tar.gz
garage-a294dd9473fb47e142d0dbac7028481ff00f921e.zip
[doc-dedup] reorder features, move no-RAFT down
Diffstat (limited to 'doc')
-rw-r--r--doc/book/reference-manual/features.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/book/reference-manual/features.md b/doc/book/reference-manual/features.md
index 433efd44..f7014b26 100644
--- a/doc/book/reference-manual/features.md
+++ b/doc/book/reference-manual/features.md
@@ -37,17 +37,6 @@ A Garage cluster can very easily evolve over time, as storage nodes are added or
Garage will automatically rebalance data between nodes as needed to ensure the desired number of copies.
Read about cluster layout management [here](@/documentation/operations/layout.md).
-### No RAFT slowing you down
-
-It might seem strange to tout the absence of something as a desirable feature,
-but this is in fact a very important point! Garage does not use RAFT or another
-consensus algorithm internally to order incoming requests: this means that all requests
-directed to a Garage cluster can be handled independently of one another instead
-of going through a central bottleneck (the leader node).
-As a consequence, requests can be handled much faster, even in cases where latency
-between cluster nodes is important (see our [benchmarks](@/documentation/design/benchmarks/index.md) for data on this).
-This is particularly usefull when nodes are far from one another and talk to one other through standard Internet connections.
-
### Several replication modes
Garage supports a variety of replication modes, with 1 copy, 2 copies or 3 copies of your data,
@@ -63,6 +52,17 @@ Zstd. Objects uploaded to Garage are chunked in blocks of constant sizes (see
and the hashes of individual blocks are used to dispatch them to storage nodes
and to deduplicate them.
+### No RAFT slowing you down
+
+It might seem strange to tout the absence of something as a desirable feature,
+but this is in fact a very important point! Garage does not use RAFT or another
+consensus algorithm internally to order incoming requests: this means that all requests
+directed to a Garage cluster can be handled independently of one another instead
+of going through a central bottleneck (the leader node).
+As a consequence, requests can be handled much faster, even in cases where latency
+between cluster nodes is important (see our [benchmarks](@/documentation/design/benchmarks/index.md) for data on this).
+This is particularly usefull when nodes are far from one another and talk to one other through standard Internet connections.
+
### Web server for static websites
A storage bucket can easily be configured to be served directly by Garage as a static web site.