2020-04-05 21:33:42 +00:00
|
|
|
# Garage
|
|
|
|
|
|
|
|
THIS IS ALL WORK IN PROGRESS. NOTHING TO SEE YET BUT THANKS FOR YOUR INTEREST.
|
|
|
|
|
|
|
|
Garage implements an S3-compatible object store with high resiliency to network failures, machine failure, and sysadmin failure.
|
2020-04-21 12:54:55 +00:00
|
|
|
|
|
|
|
## To log:
|
|
|
|
|
|
|
|
```
|
|
|
|
RUST_LOG=garage=debug cargo run --release -- server -c config_file.toml
|
|
|
|
```
|
2020-04-21 16:40:17 +00:00
|
|
|
|
|
|
|
## What to repair
|
|
|
|
|
|
|
|
- `tables`: to do a full sync of metadata, should not be necessary because it is done every hour by the system
|
|
|
|
- `versions` and `block_refs`: very time consuming, usefull if deletions have not been propagated, improves garbage collection
|
|
|
|
- `blocks`: very usefull to resync/rebalance blocks betweeen nodes
|