aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-05-15 08:05:18 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-05-15 08:05:18 +0200
commit6558c158633a2a6ce8141189cab2a5e992d520cf (patch)
tree7a21f1cc5b1ad62d1ebec325653b03e8e9574f79
parentafad62939e071621666ca7255f7164f92c4475bb (diff)
downloadgarage-hotfix/1.0.0-rc1-red-ftr-wquorum.tar.gz
garage-hotfix/1.0.0-rc1-red-ftr-wquorum.zip
-rw-r--r--src/table/replication/fullcopy.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/table/replication/fullcopy.rs b/src/table/replication/fullcopy.rs
index 1e52bb47..39e29580 100644
--- a/src/table/replication/fullcopy.rs
+++ b/src/table/replication/fullcopy.rs
@@ -43,13 +43,10 @@ impl TableReplication for TableFullReplication {
}
fn write_quorum(&self) -> usize {
let nmembers = self.system.cluster_layout().current().all_nodes().len();
-
- let max_faults = if nmembers > 1 { 1 } else { 0 };
-
- if nmembers > max_faults {
- nmembers - max_faults
- } else {
+ if nmembers < 3 {
1
+ } else {
+ nmembers.div_euclid(2) + 1
}
}