Project

General

Profile

Repo Protocol Specification » History » Version 135

Alex Afanasyev, 07/23/2014 04:45 PM

1 1 Shuo Chen
Repo Protocol Specification
2
===========================
3
4 36 Shuo Chen
A Repo supports the network by preserving content and responding to Interests requesting content that it holds. A Repo can exist in any node, and is recommended if applications in that node need to preserve data. The NDN repo protocol is a specification of repo operations including reading, insertion and deletion of data objects in repo.
5 2 Shuo Chen
6 130 Alex Afanasyev
Repo semantics is based on [[ndn-cxx:SignedInterest|Signed Interests]] with signed components an the end of the name and basic common semantics of NDN. 
7 2 Shuo Chen
8 11 Shuo Chen
When some operation of repo including insertion and deletion of data objects is requested, a command interest is sent. The command interest is the interest as command of insertion and deletion and signed as form of command interest for access control. The repo will response the command with the data object.
9 4 Shuo Chen
10 135 Alex Afanasyev
The repo protocol can be categorized in two sections of Data packet retrieval and Data packet management.  Repo-ng implements a set of repo management protocols to insert and delete data in different ways.
11 132 Alex Afanasyev
12
## Repo Management Protocols
13 1 Shuo Chen
14 133 Alex Afanasyev
- **[[Repo Command]]** defines the request and response formats of commands that can insert or remove data from repo, and how these commands should be signed and authenticated.
15 132 Alex Afanasyev
- **[[Basic Repo Insertion Protocol]]** defines format of insertion of a single or collection of Data packets.  In addition to the basic protocol, repo-ng implements several other insertion protocols:
16
17
    + **[[Watched Prefix Insertion Protocol]]** defines a protocol to insert continuously generated data
18
    + **[[Tcp Bulk Insert Repo Insertion Protocol]]** defines a simple TCP-based protocol to insert Data packets in bulk (e.g., from a producer on the same host)
19
20
- **[[Repo Deletion Protocol]]** defines format of deletion of a single or collection of Data packets under certain prefix 
21
22 4 Shuo Chen
23 131 Alex Afanasyev
## Data packet retrieval from repo
24 4 Shuo Chen
25 130 Alex Afanasyev
Repo registers prefixes of data objects it holds into NDN forwarding daemon and the repo will respond the data with such prefixes.
26 6 Shuo Chen
27 11 Shuo Chen
A standard interest is used to fetch content from the repo. The repo will respond when the name of the interest matches the prefix it registered in NFD. If the content in repo matches the interests, it will respond with the data object. When the interest is not matched, it will not respond.
28 6 Shuo Chen
29
The protocol is listed as bellow
30
31
If there is a matching data object:
32
33 7 Shuo Chen
    Requester                     Repo
34
        |                           |
35
        |                           |
36
        |         Interest          |
37
     t1 |-------------------------->|
38
        |                           |
39
        |        Data Object        |
40
     t2 |<==========================|
41 1 Shuo Chen
        |                           |
42 7 Shuo Chen
        |                           |
43 1 Shuo Chen
        |                           |
44 7 Shuo Chen
45
If there is no matching data object:
46 6 Shuo Chen
47
    Requester                     Repo
48
        |                           |
49 1 Shuo Chen
        |                           |
50 7 Shuo Chen
        |         Interest          |
51
     t1 |-------------------------->|
52
        |                           |
53
        |                           |
54
        |                           |
55
56 74 Shuo Chen
57
### About Freshness
58 19 Shuo Chen
59 20 Alex Afanasyev
Solution to handle freshness by repo has not been clearly defined, so producer needs to take care of freshness when it puts things into repo, i.e. explicitly delete obsolete content. The `MustBeFresh` selector will be ignored by repo when fetching content from repo or handling repo command by repo.