aboutsummaryrefslogtreecommitdiff
path: root/src/util/crdt/lww.rs
Commit message (Collapse)AuthorAgeFilesLines
* New buckets for 0.6.0: small fixes, including:Alex Auvolat2022-01-041-1/+6
| | | | | | | | - ensure bucket names are correct aws s3 names - when making aliases, ensure timestamps of links in both ways are the same - fix small remarks by trinity - don't have a separate website_access field
* New model for bucketsAlex Auvolat2022-01-041-0/+5
|
* Improve how node roles are assigned in Garagev0.5-beta1Alex Auvolat2021-11-161-0/+120
- change the terminology: the network configuration becomes the role table, the configuration of a nodes becomes a node's role - the modification of the role table takes place in two steps: first, changes are staged in a CRDT data structure. Then, once the user is happy with the changes, they can commit them all at once (or revert them). - update documentation - fix tests - implement smarter partition assignation algorithm This patch breaks the format of the network configuration: when migrating, the cluster will be in a state where no roles are assigned. All roles must be re-assigned and commited at once. This migration should not pose an issue.