Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Better error reporting | Alex Auvolat | 2020-04-23 | 1 | -5/+4 |
| | |||||
* | Continue pinging nodes when they are down ; overall better handling of down ↵ | Alex Auvolat | 2020-04-23 | 1 | -19/+48 |
| | | | | nodes | ||||
* | RPC to ourself do not pass through serialization + HTTPS | Alex Auvolat | 2020-04-23 | 1 | -9/+36 |
| | |||||
* | RequestStrategy with possible interruption or not | Alex Auvolat | 2020-04-23 | 1 | -14/+42 |
| | |||||
* | Fix in rpc_client (see comment in code) | Alex Auvolat | 2020-04-22 | 1 | -1/+11 |
| | |||||
* | Well they still have to exit when we're exiting though | Alex Auvolat | 2020-04-22 | 1 | -1/+0 |
| | |||||
* | Better concurrency: | Alex Auvolat | 2020-04-22 | 1 | -15/+39 |
| | | | | | | Use Notify instead of stupid sleep in background worker Use Semaphore to limit concurrent requests in rpc_client Make more background tasks cancellable | ||||
* | Make UUID & Hash Copy and remove some .clone() noise | Alex Auvolat | 2020-04-21 | 1 | -2/+2 |
| | |||||
* | Pretty logging | Alex Auvolat | 2020-04-21 | 1 | -1/+1 |
| | |||||
* | Add hostname to node info | Alex Auvolat | 2020-04-19 | 1 | -4/+5 |
| | |||||
* | Begin implement bucket management & admin commands | Alex Auvolat | 2020-04-19 | 1 | -7/+9 |
| | |||||
* | Reorder imports. | Alex Auvolat | 2020-04-18 | 1 | -2/+2 |
| | | | | | | | 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 | ||||
* | Massive RPC refactoring | Alex Auvolat | 2020-04-18 | 1 | -94/+153 |
| | |||||
* | Implement getting missing blocks when RC increases | Alex Auvolat | 2020-04-17 | 1 | -3/+9 |
| | | | | | | | 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. | ||||
* | Make all requests continue in the background even after we got enough responses. | Alex Auvolat | 2020-04-16 | 1 | -14/+25 |
| | |||||
* | WIP | Alex Auvolat | 2020-04-16 | 1 | -1/+1 |
| | |||||
* | Begin work on sync... | Alex Auvolat | 2020-04-16 | 1 | -2/+4 |
| | |||||
* | Cleanup | Alex Auvolat | 2020-04-12 | 1 | -2/+1 |
| | |||||
* | TLS works \o/ | Alex Auvolat | 2020-04-12 | 1 | -6/+5 |
| | | | | | | | | | So, the issues were: - webpki does not support IP addresses as DNS names in URLs, so I hacked the HttpsConnector to always provide a fixed string as the DNS name for server certificate validation - the certificate requied a SAN section which was complicated to build but eventually the solution is there in genkeys.sh | ||||
* | Trying to do TLS | Alex Auvolat | 2020-04-12 | 1 | -9/+44 |
| | |||||
* | Keep network status & ring in a tokio::sync::watch | Alex Auvolat | 2020-04-11 | 1 | -2/+2 |
| | | | | | | advantages - reads don't prevent preparing writes - can be followed from other parts of the system by cloning the receiver | ||||
* | Fix the Sync issue. Details: | Alex Auvolat | 2020-04-10 | 1 | -34/+37 |
| | | | | | | | 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 | -1/+1 |
| | |||||
* | Something works | Alex Auvolat | 2020-04-09 | 1 | -1/+1 |
| | |||||
* | Basic workflow for client PUT, next is do actual storage | Alex Auvolat | 2020-04-08 | 1 | -9/+38 |
| | |||||
* | Refactor; ability to update network config | Alex Auvolat | 2020-04-07 | 1 | -0/+96 |