Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New model for buckets | Alex Auvolat | 2022-01-04 | 2 | -5/+5 |
| | |||||
* | Make table name a const in trait | Alex Auvolat | 2021-12-15 | 6 | -52/+57 |
| | |||||
* | Improve how node roles are assigned in Garagev0.5-beta1 | Alex Auvolat | 2021-11-16 | 9 | -508/+10 |
| | | | | | | | | | | | | | | | | | - 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. | ||||
* | Implement GC delay for table data | Alex Auvolat | 2021-11-08 | 2 | -36/+74 |
| | |||||
* | Refactor and comment table GC logic | Alex Auvolat | 2021-11-08 | 2 | -23/+130 |
| | |||||
* | Fix clippy lints (fix #121) | Alex Auvolat | 2021-10-26 | 5 | -12/+12 |
| | |||||
* | Improve CLI, adapt tests, update documentation | Alex Auvolat | 2021-10-25 | 1 | -5/+1 |
| | |||||
* | Improvements to CLI and various fixes for netapp version | Alex Auvolat | 2021-10-22 | 6 | -69/+48 |
| | | | | Discovery via consul, persist peer list to file | ||||
* | First port of Garage to Netapp | Alex Auvolat | 2021-10-22 | 8 | -137/+186 |
| | |||||
* | Prepare for v0.3.0 and add migration path from v0.2.1.xv0.3.0 | Alex Auvolat | 2021-05-28 | 1 | -3/+3 |
| | |||||
* | Many improvements on ring/replication and its configuration: | Alex Auvolat | 2021-05-28 | 3 | -3/+52 |
| | | | | | | | | | | | | | | | | | | | | - Explicit "replication_mode" configuration parameters that takes either "none", "2" or "3" as values, instead of letting user configure replication factor themselves. These are presets whose corresponding replication/quorum values can be found in replication/mode.rs - Explicit support for single-node and two-node deployments (number of nodes must be at least "replication_mode", with "none" we can have only one node) - Ring is now stored much more compactly with 256*8 + n*32 bytes, instead of 256*32 bytes - Support for gateway-only nodes that do not store data (these nodes still need a metadata_directory to store the list of bucket and keys since those are stored on all nodes; it also technically needs a data_directory to start but it will stay empty unless we have bugs) | ||||
* | rename types to CamelCase | Trinity Pointard | 2021-05-03 | 14 | -96/+96 |
| | |||||
* | fix clippy warnings on table | Trinity Pointard | 2021-05-03 | 10 | -43/+63 |
| | |||||
* | change some more comments and revert changes on TableSchema | Trinity Pointard | 2021-04-27 | 1 | -1/+1 |
| | |||||
* | make most requested changes | Trinity Pointard | 2021-04-27 | 3 | -4/+2 |
| | |||||
* | attempt at documenting table crate | Trinity Pointard | 2021-04-27 | 9 | -26/+50 |
| | |||||
* | Improve bootstraping: do it regularly; persist peer list | Alex Auvolat | 2021-04-27 | 3 | -8/+30 |
| | |||||
* | update to v0.2.1v0.2.1release-v0.2.1 | Alex Auvolat | 2021-03-19 | 1 | -3/+3 |
| | |||||
* | Update Cargo.toml files with AGPL license infov0.2.0 | Alex Auvolat | 2021-03-18 | 1 | -4/+4 |
| | |||||
* | Prepare for release 0.2 | Alex Auvolat | 2021-03-18 | 1 | -3/+3 |
| | |||||
* | Todo make a test for the Merkle updater | Alex Auvolat | 2021-03-16 | 1 | -44/+59 |
| | |||||
* | Leader-based GC | Alex Auvolat | 2021-03-16 | 2 | -4/+18 |
| | |||||
* | Small changes | Alex Auvolat | 2021-03-16 | 1 | -5/+8 |
| | |||||
* | Update dependencies | Alex Auvolat | 2021-03-16 | 3 | -22/+13 |
| | |||||
* | Simpler Merkle & sync | Alex Auvolat | 2021-03-16 | 5 | -145/+65 |
| | |||||
* | some reordering | Alex Auvolat | 2021-03-16 | 3 | -9/+7 |
| | |||||
* | Refactor code | Alex Auvolat | 2021-03-16 | 5 | -163/+167 |
| | |||||
* | Simplify replication logic | Alex Auvolat | 2021-03-16 | 6 | -48/+41 |
| | |||||
* | Some improvements in background worker but we terminate late | Alex Auvolat | 2021-03-15 | 2 | -5/+2 |
| | |||||
* | WIP migrate to tokio 1 | Alex Auvolat | 2021-03-15 | 5 | -31/+20 |
| | |||||
* | Refactor block resync loop; make workers infaillible | Alex Auvolat | 2021-03-15 | 3 | -10/+6 |
| | |||||
* | Small fixes | Alex Auvolat | 2021-03-15 | 2 | -3/+15 |
| | |||||
* | Tiny things | Alex Auvolat | 2021-03-15 | 1 | -0/+1 |
| | |||||
* | Make block rc code more understandable | Alex Auvolat | 2021-03-15 | 1 | -1/+1 |
| | |||||
* | Time and metadata improvements | Alex Auvolat | 2021-03-15 | 3 | -6/+8 |
| | |||||
* | Optim & refactor | Alex Auvolat | 2021-03-12 | 1 | -8/+11 |
| | |||||
* | cargo fmt | Alex Auvolat | 2021-03-12 | 6 | -69/+110 |
| | |||||
* | Implement table gc, currently for block_ref and version only | Alex Auvolat | 2021-03-12 | 7 | -34/+279 |
| | |||||
* | Implement garage stats to get info on node contents | Alex Auvolat | 2021-03-12 | 2 | -3/+3 |
| | |||||
* | Move table rpc client out of tableaux | Alex Auvolat | 2021-03-12 | 2 | -21/+16 |
| | |||||
* | Make syncer have its own rpc client/server | Alex Auvolat | 2021-03-12 | 3 | -30/+73 |
| | |||||
* | Don't sync at beginning | Alex Auvolat | 2021-03-12 | 1 | -3/+7 |
| | |||||
* | Fix merkle updater not being notified; improved logging | Alex Auvolat | 2021-03-12 | 3 | -14/+16 |
| | |||||
* | whoops | Alex Auvolat | 2021-03-11 | 2 | -2/+11 |
| | |||||
* | More security: don't delete stuff too easily | Alex Auvolat | 2021-03-11 | 2 | -1/+9 |
| | |||||
* | Add comment, and also whoops, this wasn't doing what we expected | Alex Auvolat | 2021-03-11 | 1 | -8/+14 |
| | |||||
* | Add a nice warning | Alex Auvolat | 2021-03-11 | 1 | -2/+5 |
| | |||||
* | Tiny changes | Alex Auvolat | 2021-03-11 | 1 | -3/+6 |
| | |||||
* | (not well tested) use merkle tree for sync | Alex Auvolat | 2021-03-11 | 8 | -961/+752 |
| | |||||
* | WIP big refactoring | Alex Auvolat | 2021-03-11 | 10 | -291/+368 |
| |