Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reorganize code | Alex Auvolat | 2020-04-23 | 1 | -500/+0 |
| | |||||
* | RPC to ourself do not pass through serialization + HTTPS | Alex Auvolat | 2020-04-23 | 1 | -12/+20 |
| | |||||
* | RequestStrategy with possible interruption or not | Alex Auvolat | 2020-04-23 | 1 | -21/+25 |
| | |||||
* | Improvements to block resync queue & worker | Alex Auvolat | 2020-04-22 | 1 | -21/+47 |
| | |||||
* | I'm stupid though | Alex Auvolat | 2020-04-22 | 1 | -2/+4 |
| | |||||
* | Do not delete block if just a single replication error. Write TODO stuff. | Alex Auvolat | 2020-04-22 | 1 | -10/+10 |
| | |||||
* | Make UUID & Hash Copy and remove some .clone() noise | Alex Auvolat | 2020-04-21 | 1 | -8/+5 |
| | |||||
* | Pretty logging | Alex Auvolat | 2020-04-21 | 1 | -9/+11 |
| | |||||
* | Log which workers are doing what | Alex Auvolat | 2020-04-19 | 1 | -2/+4 |
| | |||||
* | Implement repair object->version and version->block ref | Alex Auvolat | 2020-04-19 | 1 | -13/+1 |
| | |||||
* | Implement repair command | Alex Auvolat | 2020-04-19 | 1 | -0/+84 |
| | |||||
* | More aggressive sync timings & improve other stuff | Alex Auvolat | 2020-04-19 | 1 | -2/+2 |
| | |||||
* | Begin implement bucket management & admin commands | Alex Auvolat | 2020-04-19 | 1 | -2/+2 |
| | |||||
* | Reorder imports. | Alex Auvolat | 2020-04-18 | 1 | -0/+1 |
| | | | | | | | Trying to separate: 1. Stuff for handling the swarm of nodes and generic table data replication 2. Stuff for the object store core application: metadata tables and block management 3. Stuff for the S3 API | ||||
* | Remove proto.rs & move some definitions out of data.rs | Alex Auvolat | 2020-04-18 | 1 | -1/+11 |
| | |||||
* | Massive RPC refactoring | Alex Auvolat | 2020-04-18 | 1 | -51/+92 |
| | |||||
* | Fix sync: use max root checksum level | Alex Auvolat | 2020-04-17 | 1 | -3/+3 |
| | |||||
* | Fix add to resync on incref | Alex Auvolat | 2020-04-17 | 1 | -5/+6 |
| | |||||
* | Fix walk_ring_from | Alex Auvolat | 2020-04-17 | 1 | -1/+1 |
| | |||||
* | Several resync workers; add delay on retry resync | Alex Auvolat | 2020-04-17 | 1 | -16/+15 |
| | |||||
* | Fix paths :o | Alex Auvolat | 2020-04-17 | 1 | -6/+8 |
| | |||||
* | Implement sending blocks to nodes that need them | Alex Auvolat | 2020-04-17 | 1 | -1/+60 |
| | |||||
* | Don't send items... | Alex Auvolat | 2020-04-17 | 1 | -7/+16 |
| | | | | | ...if syncer doesn't need them because he's going to delete the partition anyway. Also, fix block resync queue | ||||
* | Resync block on read error | Alex Auvolat | 2020-04-17 | 1 | -1/+8 |
| | |||||
* | WIP | Alex Auvolat | 2020-04-17 | 1 | -37/+63 |
| | | | | | | TODOs: - ensure sync goes both way - finish sending blocks to other nodes when they need them before deleting | ||||
* | Implement getting missing blocks when RC increases | Alex Auvolat | 2020-04-17 | 1 | -23/+140 |
| | | | | | | | Issue: RC increases also when the block ref entry is first put by the actual client. At that point the client is probably already sending us the block content, so we don't need to do a get... We should add a delay before the task is added or find something to do. | ||||
* | Keep network status & ring in a tokio::sync::watch | Alex Auvolat | 2020-04-11 | 1 | -12/+14 |
| | | | | | | advantages - reads don't prevent preparing writes - can be followed from other parts of the system by cloning the receiver | ||||
* | Local refcounting of blocks | Alex Auvolat | 2020-04-11 | 1 | -29/+93 |
| | |||||
* | Fix the Sync issue. Details: | Alex Auvolat | 2020-04-10 | 1 | -5/+5 |
| | | | | | | | So the HTTP client future of Hyper is not Sync, thus the stream that read blocks wasn't either. However Hyper's default Body type requires a stream to be Sync for wrap_stream. Solution: reimplement a custom HTTP body type. | ||||
* | Why is it not Sync?? | Alex Auvolat | 2020-04-09 | 1 | -0/+49 |