aboutsummaryrefslogtreecommitdiff
path: root/src/server.rs
Commit message (Collapse)AuthorAgeFilesLines
* Begin implement bucket management & admin commandsAlex Auvolat2020-04-191-7/+37
|
* Refactor sharding logic; coming next: full replication with epidemic ↵Alex Auvolat2020-04-191-13/+9
| | | | dissemination
* Reorder imports.Alex Auvolat2020-04-181-4/+6
| | | | | | | 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.rsAlex Auvolat2020-04-181-1/+6
|
* Massive RPC refactoringAlex Auvolat2020-04-181-28/+17
|
* WIPAlex Auvolat2020-04-171-7/+27
| | | | | | TODOs: - ensure sync goes both way - finish sending blocks to other nodes when they need them before deleting
* Implement getting missing blocks when RC increasesAlex Auvolat2020-04-171-5/+5
| | | | | | | 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.
* Implement ring comparison algorithmAlex Auvolat2020-04-161-3/+6
|
* Begin work on sync...Alex Auvolat2020-04-161-3/+3
|
* Small refactoringsAlex Auvolat2020-04-121-6/+6
|
* Trying to do TLSAlex Auvolat2020-04-121-5/+4
|
* Refactor a bitAlex Auvolat2020-04-121-29/+34
|
* Keep network status & ring in a tokio::sync::watchAlex Auvolat2020-04-111-1/+1
| | | | | | advantages - reads don't prevent preparing writes - can be followed from other parts of the system by cloning the receiver
* Local refcounting of blocksAlex Auvolat2020-04-111-4/+7
|
* table::insert_many, version_table::updatedAlex Auvolat2020-04-111-6/+3
|
* Background task runner that replaces tokio::spawnAlex Auvolat2020-04-111-35/+64
|
* Add block ref tableAlex Auvolat2020-04-101-0/+16
|
* Fix the Sync issue. Details:Alex Auvolat2020-04-101-27/+32
| | | | | | | 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 Auvolat2020-04-091-1/+18
|
* Something worksAlex Auvolat2020-04-091-1/+1
|
* Some progressAlex Auvolat2020-04-091-8/+8
|
* Some workAlex Auvolat2020-04-081-2/+7
|
* Some work in actually storing thingsAlex Auvolat2020-04-081-4/+51
|
* Basic workflow for client PUT, next is do actual storageAlex Auvolat2020-04-081-5/+17
|
* custom data type for hashes and identifiersAlex Auvolat2020-04-071-4/+4
|
* Config management & ringAlex Auvolat2020-04-071-2/+0
|
* Refactor; ability to update network configAlex Auvolat2020-04-071-0/+98