research/remote_log/remote_log_spec.md

217 lines
5.4 KiB
Markdown
Raw Normal View History

2019-09-06 09:54:39 +00:00
# Remote log specification
2019-09-30 05:00:51 +00:00
> Version: 0.1.0 (Draft)
2019-09-04 12:45:11 +00:00
>
> Authors: Oskar Thorén oskar@status.im, Dean Eigenmann dean@status.im
## Table of Contents
2019-09-24 04:51:20 +00:00
- [Abstract](#abstract)
- [Definitions](#definitions)
- [Wire Protocol](#wire-protocol)
2019-09-24 05:41:46 +00:00
- [Secure Transport, storage, and name system](#secure-transport-storage-and-name-system)
2019-09-24 04:51:20 +00:00
- [Payloads](#payloads)
2019-09-24 05:41:46 +00:00
- [Synchronization](#synchronization)
- [Roles](#roles)
- [Flow](#flow)
2019-09-25 08:49:12 +00:00
- [Remote log](#remote-log)
- [Next page semantics](#next-page-semantics)
2019-09-24 05:41:46 +00:00
- [Interaction with MVDS](#interaction-with-mvds)
2019-09-24 04:51:20 +00:00
- [Footnotes](#footnotes)
- [Acknowledgements](#acknowledgements)
2019-09-04 12:45:11 +00:00
## Abstract
2019-09-24 05:05:55 +00:00
A remote log is a replication of a local log. This means a node can read data from a node that is offline.
This specification is complemented by a proof of concept implementation <sup>1</sup>.
2019-09-06 09:54:39 +00:00
2019-09-04 12:45:11 +00:00
## Definitions
2019-09-21 07:17:16 +00:00
| Term | Definition |
| ----------- | -------------------------------------------------------------------------------------- |
| CAS | Content-addressed storage. Stores data that can be addressed by its hash. |
2019-09-24 05:08:54 +00:00
| NS | Name system. Associates mutable data to a name. |
2019-09-21 07:17:16 +00:00
| Remote log | Replication of a local log at a different location. |
2019-09-06 09:54:39 +00:00
## Wire Protocol
2019-09-24 05:08:54 +00:00
### Secure Transport, storage, and name system
2019-09-24 05:03:20 +00:00
This specification does not define anything related to to: secure transport,
2019-09-24 05:08:54 +00:00
content addressed storage, or the name system. It is assumed these capabilities
2019-09-24 05:03:20 +00:00
are abstracted away in such a way that any such protocol can easily be
implemented.
<!-- TODO: Elaborate on properties required here. -->
2019-09-06 09:54:39 +00:00
### Payloads
2019-09-24 05:03:20 +00:00
Payloads are implemented using [protocol buffers v3](https://developers.google.com/protocol-buffers/).
**CAS service**:
2019-09-06 09:54:39 +00:00
```protobuf
package vac.cas;
service CAS {
rpc Add(Content) returns (Address) {}
rpc Get(Address) returns (Content) {}
}
message Address {
bytes id = 1;
}
message Content {
bytes data = 1;
}
```
2019-09-25 08:22:39 +00:00
<!-- XXX/TODO: Can we get rid of the id/data complication and just use bytes? -->
2019-09-24 05:03:20 +00:00
**NS service**:
2019-09-06 09:54:39 +00:00
```protobuf
service NS {
rpc Update(NameUpdate) returns (Response) {}
rpc Fetch(Query) returns (Content) {}
}
message NameUpdate {
string name = 1;
bytes content = 2;
}
message Query {
string name = 1;
}
message Content {
bytes data = 1;
}
message Response {
bytes data = 1;
}
```
2019-09-24 05:03:20 +00:00
<!-- XXX: Response and data type a bit weird, Ok/Err enum? -->
<!-- TODO: Do we want NameInit here? -->
2019-09-06 09:54:39 +00:00
2019-09-24 05:03:20 +00:00
**Remote log:**
2019-09-21 07:17:16 +00:00
2019-09-06 09:54:39 +00:00
```protobuf
message RemoteLog {
repeated Pair pair = 1;
2019-09-06 09:54:39 +00:00
bytes tail = 2;
message Pair {
bytes remoteHash = 1;
bytes localHash = 2;
2019-09-30 05:00:51 +00:00
bytes data = 3;
2019-09-06 09:54:39 +00:00
}
}
```
<!-- TODO: Better name for Pair, Mapping? -->
2019-09-25 08:22:39 +00:00
2019-09-24 05:03:20 +00:00
<!-- TODO: Extend pair with (optional) data -->
2019-09-24 05:08:54 +00:00
## Synchronization
2019-09-04 12:45:11 +00:00
2019-09-24 05:31:27 +00:00
<!-- TODO: Elaborate on interaction with MVDS, especially with what messages are synced, etc -->
2019-09-24 05:08:54 +00:00
### Roles
2019-09-06 09:54:39 +00:00
2019-09-24 05:35:31 +00:00
There are four fundamental roles:
2019-09-24 05:12:40 +00:00
2019-09-24 05:35:31 +00:00
1. Alice
2. Bob
2019-09-24 05:12:40 +00:00
2. Name system (NS)
3. Content-addressed storage (CAS)
2019-09-24 05:35:31 +00:00
The *remote log* protobuf is what is stored at the Name system.
2019-09-24 05:12:40 +00:00
2019-09-24 05:35:31 +00:00
"Bob" can represents anything from 0 to N participants. Unlike Alice, Bob only needs read-only access to NS and CAS.
2019-09-06 09:54:39 +00:00
2019-09-24 05:31:27 +00:00
### Flow
2019-09-06 09:54:39 +00:00
2019-09-24 05:31:27 +00:00
<!-- diagram -->
2019-09-06 09:54:39 +00:00
2019-09-24 05:31:27 +00:00
<p align="center">
<img src="./remote-log.png" />
<br />
Figure 1: Remote log data synchronization.
</p>
2019-09-06 09:54:39 +00:00
2019-09-25 08:49:12 +00:00
### Remote log
2019-09-24 05:41:15 +00:00
The remote log lets receiving nodes know what data they are missing. Depending
on the specific requirements and capabilities of the nodes and name system, the
information can be referred to differently. We distinguish between three rough
modes:
1. Fully replicated log
2. Normal sized page with CAS mapping
3. "Linked list" mode - minimally sized page with CAS mapping
2019-09-25 08:49:12 +00:00
**Data format:**
```
| H1_3 | H2_3 |
| H1_2 | H2_2 |
| H1_1 | H2_1 |
| ------------|
| next_page |
```
Here the upper section indicates a list of ordered pairs, and the lower section
contains the address for the next page chunk. `H1` is the native hash function,
2019-09-30 04:49:58 +00:00
and `H2` is the one used by the CAS. The numbers corresponds to the messages.
2019-09-30 04:59:45 +00:00
To indicate which CAS is used, a remote log SHOULD use a multiaddr.
2019-09-30 04:49:58 +00:00
**Embedded data:**
A remote log MAY also choose to embed the wire payloads that corresponds to the
native hash. This bypasses the need for a dedicated CAS and additional
round-trips, with a trade-off in bandwidth usage.
```
| H1_3 | | C_3 |
| H1_2 | | C_2 |
| H1_1 | | C_1 |
| -------------|
| next_page |
```
Here `C` stands for the content that would be stored at the CAS.
2019-09-30 04:49:58 +00:00
Both patterns can be used in parallel, e,g. by storing the last `k` messages
directly and use CAS pointers for the rest. Together with the `next_page` page
semantics, this gives users flexibility in terms of bandwidth and
latency/indirection, all the way from a simple linked list to a fully replicated
log. The latter is useful for things like backups on durable storage.
2019-09-25 08:49:12 +00:00
### Next page semantics
2019-09-30 04:22:25 +00:00
The pointer to the 'next page' is another remote log entry, at a previous point
in time.
2019-09-25 08:49:12 +00:00
2019-09-30 04:22:25 +00:00
<!-- TODO: Determine requirement re overlapping, adjacent, and/or missing entries -->
2019-09-24 05:41:15 +00:00
### Interaction with MVDS
2019-09-25 08:49:12 +00:00
TBD.
2019-09-24 05:41:15 +00:00
<!-- TODO: Elaborate on interaction with MVDS, especially with what messages are synced, etc -->
2019-09-04 12:45:11 +00:00
## Footnotes
2019-09-24 05:05:55 +00:00
1. <https://github.com/vacp2p/research/tree/master/remote_log>
2019-09-06 09:54:39 +00:00
2019-09-04 12:45:11 +00:00
## Acknowledgements
2019-09-06 09:54:39 +00:00
TBD.