Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | First implementation of K2V (#293) | Alex | 2022-05-10 | 1 | -31/+95 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | **Specification:** View spec at [this URL](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/k2v/doc/drafts/k2v-spec.md) - [x] Specify the structure of K2V triples - [x] Specify the DVVS format used for causality detection - [x] Specify the K2V index (just a counter of number of values per partition key) - [x] Specify single-item endpoints: ReadItem, InsertItem, DeleteItem - [x] Specify index endpoint: ReadIndex - [x] Specify multi-item endpoints: InsertBatch, ReadBatch, DeleteBatch - [x] Move to JSON objects instead of tuples - [x] Specify endpoints for polling for updates on single values (PollItem) **Implementation:** - [x] Table for K2V items, causal contexts - [x] Indexing mechanism and table for K2V index - [x] Make API handlers a bit more generic - [x] K2V API endpoint - [x] K2V API router - [x] ReadItem - [x] InsertItem - [x] DeleteItem - [x] PollItem - [x] ReadIndex - [x] InsertBatch - [x] ReadBatch - [x] DeleteBatch **Testing:** - [x] Just a simple Python script that does some requests to check visually that things are going right (does not contain parsing of results or assertions on returned values) - [x] Actual tests: - [x] Adapt testing framework - [x] Simple test with InsertItem + ReadItem - [x] Test with several Insert/Read/DeleteItem + ReadIndex - [x] Test all combinations of return formats for ReadItem - [x] Test with ReadBatch, InsertBatch, DeleteBatch - [x] Test with PollItem - [x] Test error codes - [ ] Fix most broken stuff - [x] test PollItem broken randomly - [x] when invalid causality tokens are given, errors should be 4xx not 5xx **Improvements:** - [x] Descending range queries - [x] Specify - [x] Implement - [x] Add test - [x] Batch updates to index counter - [x] Put K2V behind `k2v` feature flag Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/293 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me> | ||||
* | Add spans to table calls, change span names in RPC | Alex Auvolat | 2022-03-14 | 1 | -2/+37 |
| | |||||
* | Add metrics to API endpoint | Alex Auvolat | 2022-03-14 | 1 | -2/+4 |
| | |||||
* | Refactor how durations are measured | Alex Auvolat | 2022-03-14 | 1 | -28/+34 |
| | |||||
* | Add many metrics in table/ and rpc/ | Alex Auvolat | 2022-03-14 | 1 | -1/+33 |
| | |||||
* | Some movement of helper code and refactoring of error handling | Alex Auvolat | 2022-01-04 | 1 | -1/+1 |
| | |||||
* | Make table name a const in trait | Alex Auvolat | 2021-12-15 | 1 | -9/+3 |
| | |||||
* | Improvements to CLI and various fixes for netapp version | Alex Auvolat | 2021-10-22 | 1 | -20/+15 |
| | | | | Discovery via consul, persist peer list to file | ||||
* | First port of Garage to Netapp | Alex Auvolat | 2021-10-22 | 1 | -46/+64 |
| | |||||
* | rename types to CamelCase | Trinity Pointard | 2021-05-03 | 1 | -23/+23 |
| | |||||
* | fix clippy warnings on table | Trinity Pointard | 2021-05-03 | 1 | -8/+5 |
| | |||||
* | Leader-based GC | Alex Auvolat | 2021-03-16 | 1 | -1/+1 |
| | |||||
* | some reordering | Alex Auvolat | 2021-03-16 | 1 | -2/+2 |
| | |||||
* | Refactor code | Alex Auvolat | 2021-03-16 | 1 | -27/+26 |
| | |||||
* | Simplify replication logic | Alex Auvolat | 2021-03-16 | 1 | -5/+5 |
| | |||||
* | cargo fmt | Alex Auvolat | 2021-03-12 | 1 | -1/+1 |
| | |||||
* | Implement table gc, currently for block_ref and version only | Alex Auvolat | 2021-03-12 | 1 | -6/+2 |
| | |||||
* | Move table rpc client out of tableaux | Alex Auvolat | 2021-03-12 | 1 | -18/+13 |
| | |||||
* | Make syncer have its own rpc client/server | Alex Auvolat | 2021-03-12 | 1 | -2/+2 |
| | |||||
* | (not well tested) use merkle tree for sync | Alex Auvolat | 2021-03-11 | 1 | -28/+22 |
| | |||||
* | WIP big refactoring | Alex Auvolat | 2021-03-11 | 1 | -214/+51 |
| | |||||
* | Checkpoint: add merkle tree in data table | Alex Auvolat | 2021-03-11 | 1 | -29/+62 |
| | |||||
* | Refactor model stuff, including cleaner CRDTs | Alex Auvolat | 2021-03-10 | 1 | -0/+1 |
| | |||||
* | Remove epidemic propagation for fully replicated stuff: write directly to ↵ | Alex Auvolat | 2021-03-05 | 1 | -15/+2 |
| | | | | all nodes | ||||
* | I was tired yesterday | Alex Auvolat | 2021-02-24 | 1 | -1/+1 |
| | |||||
* | fix misuse of sled transactions | Alex Auvolat | 2021-02-23 | 1 | -1/+1 |
| | |||||
* | Update sled & try to debug deadlock (but its in sled...) | Alex Auvolat | 2021-02-23 | 1 | -7/+3 |
| | |||||
* | Make updated() be a sync function that doesn't fail | Alex Auvolat | 2021-02-23 | 1 | -3/+3 |
| | |||||
* | Handle correctly deletion dues to offloading | Alex Auvolat | 2021-02-23 | 1 | -23/+21 |
| | |||||
* | Several changes in table_sync: | Alex Auvolat | 2021-02-23 | 1 | -1/+1 |
| | | | | | - separate path for case of offloading a partition we don't store - use sync::Mutex instead of tokio::Mutex, make less fn's async | ||||
* | Some refactoring | Alex Auvolat | 2021-02-21 | 1 | -1/+2 |
| | |||||
* | Propose ETag fixbug/etag | Alex Auvolat | 2020-12-05 | 1 | -1/+2 |
| | |||||
* | data hexdump in warningfeature/better-crdt | Alex Auvolat | 2020-11-20 | 1 | -0/+3 |
| | |||||
* | Warning when cannot decode entry (data format incompatibilities) | Alex Auvolat | 2020-11-20 | 1 | -8/+13 |
| | |||||
* | Refactor error management in API parterror-refactoring | Alex Auvolat | 2020-11-08 | 1 | -1/+1 |
| | |||||
* | cargo fmt | Alex Auvolat | 2020-07-08 | 1 | -13/+10 |
| | |||||
* | Add support for model migrations | Alex Auvolat | 2020-07-08 | 1 | -73/+19 |
| | |||||
* | Split code for modular compilation | Alex Auvolat | 2020-04-24 | 1 | -10/+10 |
| | |||||
* | Reorganize code | Alex Auvolat | 2020-04-23 | 1 | -0/+524 |