Project

General

Profile

Basic Repo Insertion Protocol » History » Version 9

weijia yuan, 02/14/2018 02:36 PM

1 1 Alex Afanasyev
Basic Repo Insertion Protocol
2
=============================
3
4 2 Alex Afanasyev
Basic repo insertion protocol uses **[[Repo Command]]**.
5 1 Alex Afanasyev
6 6 Muktadir Chowdhury
Repo insertion command requests that the repo retrieve and store content. This command interest is a signed interest and will be validated with access control policy defined by the repo. When the Interest is validated and name of the data is not existed in the repo. The repository will respond with a data object containing OK status and start to send the interest to fetch the data to insert.
7 4 Alex Afanasyev
8
Segmented data insertion is also supported in the insertion protocol. Segmentation info is defined in RepoCommandParameter. If the content is segmented, the final segment id will be encoded in this block.
9
10 9 weijia yuan
Forwarding hint is a scheme for mobility support in a large NDN network. Repo will support forwarding hint method in the insertion protocol. If regular interest is unroutable, consumer will send the interest with a link object, which contain information about destination region. When interest reached consumer region edge, the router will make a selection among delegation information. Intermediate router will forward the interest through this delegation. When interest reaches producer region edge, the router will forward the interest through the original name.
11
12 4 Alex Afanasyev
13 3 Alex Afanasyev
## Basic operations
14
15
### Insert data
16
17
Command verb: **insert**
18
19 1 Alex Afanasyev
The name semantics follows the format of the repo command. The <command verb> is defined as ``insert``.
20
For example, for ``<repo prefix>`` as ``/ucla/cs/repo``, the following is an example:
21
22
    /ucla/cs/repo/insert/<RepoCommandParameter>/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue>
23
24
### Insertion status check
25
26 3 Alex Afanasyev
Command verb: **insert check**
27
28 1 Alex Afanasyev
During the insertion progress, the requester could send insertion status check command to check the status of the insertion progress. This status check command is also signed interest. The semantics of insertion status check command is shown as follows:
29
30
<command verb> equals to ``insert check``. For example:
31
32
    /ucla/cs/repo/insert check/<RepoCommandParameter>/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue>
33
34 3 Alex Afanasyev
## Formats
35
36 1 Alex Afanasyev
### RepoCommandParameter
37
38
RepoCommandParameter of insertion and insertion check command follows that in Repo Command section. Name, Selectors, StartBlockId, EndBlockId are used in insertion. Name and ProcessId are used in insertion check command.
39
40
In insertion command, Name represents the name or prefix of data for repo to fetch. If selectors are set, repo will use these selectors to fetch the data. If StartBlockId or EndBlockId is set, the repo will retrieve segmented data with segment number between StartBlockId and EndBlockId. If Repo Insert Command carries both Selectors and StartBlockId, EndBlockId, repo would ignore it and response with statuscode of 405.
41
42
In insertion check command, Name represents name or prefix of data for repo to fetch. ProcessId is set by the RepoCommandResponse to indicate specified process.
43
44 5 Alex Afanasyev
### Insertion status response
45 1 Alex Afanasyev
46
This insert status data object could be the response data object of both insert command and insert check command. It will follow the format of repo command response.
47
48 5 Alex Afanasyev
StatusCode indicates the status of insertion. InsertNum represents how many data has been interested into the repo. StartBlockId and EndBlockId is the start and end segment id of data inserted. InsertNum is the how many data segments have been inserted. ProcessId indicates an ID of process, a random number generated by repo.
49 1 Alex Afanasyev
50 5 Alex Afanasyev
For insert command, status code will be set according to definition below, StartBlockId and EndBlockId will be set according to the insert command. If StartBlockId in RepoCommandParameter is missing, it will be set 0 in response. If EndBlockId is missing, it will not be set.
51 1 Alex Afanasyev
52
For insert check command, status code will be set according to definition below, StartBlockId and EndBlockId will be set according to the StartBlockId and EndBlockId that repo is using, insertnum will be set according to insertion progress. ProcessId is set according to the ID of process checked. If EndBlockId has not been decided, this EndBlockId will not be set in response.
53
54
StatusCode Definition:
55
56
``StatusCode`` | Description
57
-------------- | ----------------------------------------------
58
``100``        | The command is OK. can start to fetch the data
59
``200``        | All the data has been inserted
60
``300``        | This insertion is in progress
61
``401``        | This insertion command or insertion check command is invalidated
62
``402``        | Selectors and BlockId both present
63
``403``        | Malformed Command
64
``404``        | No such this insertion is in progress
65
``405``        | EndBlockId Missing Timeout
66
67
### EndBlockId Missing Timeout
68
69 5 Alex Afanasyev
If StartBlockId presents but EndBlockId is missing, and returned data packets do not contain FinalBlockId, the repo will continuously fetch the data. An EndBlockId missing timeout is set to prevent this occasion. The repo will start a timer when StartBlockId presents but EndBlockId is missing. When timeout happens, repo will stop fetching data to store and end insert process. If an insert check command arrives during this insert process, the time of timer is set to 0. If data packet containing FinalBlockId arrives, this timeout timer will be dismissed.
70 1 Alex Afanasyev
71 3 Alex Afanasyev
## Protocol Process
72 1 Alex Afanasyev
73
1. start to authorize the command; if authorization does not fail immediately, go to step 3
74
75
2. send a negative response indicating authorization failure, and abort these steps, insert process ends (StatusCode: 401)
76
77
3. if  both StartBlockId and EndBlockId are missing, go to step 7
78
79
4. if either StartBlockId or EndBlockId is present, and one of supported selectors is present. send negative reponse back and abort steps, insert process ends (StatusCode: 402)
80
81
5. if both StartBlockId and EndBlockId are present, and StartBlockId is less than or equal to EndBlockId, go to step 7
82
83
6. send a negative response indicating malformed command, and abort these steps, insert process ends (StatusCode: 403)
84
85
7. wait for authorization completion
86
87
8. if authorization fails, go to step 2 (StatusCode: 401)
88
89
9. send a positive response indicating insert is in progress (StatusCode: 200)
90
91
10. if either StartBlockId or EndBlockId is present, go to step 16
92
93
11. start to retrieve Name with selectors in insert command
94
95
12. wait for retrieval completion
96
97
13. if retrieval fails, go to step 27
98
99
14. store retrieved Data packet
100
101
15. abort these steps, insert process ends
102
103
16. if StartBlockId is missing, set StartBlockId 0. If EndBlockId is missing, EndBlockId will be missing unless get FinalBlockId in comming data packets, start EndBlockId Misiing Timeout timer.
104
105
17. append StartBlockId to Name
106
107
18. start to retrieve Name
108
109
19. wait for retrieval completion
110
111
20. if retrieval fails, go to step 26
112
113
21. store retrieved Data packet
114
115
22. if retrieved Data packet contains FinalBlockId, and FinalBlockId is less than EndBlockId or EndBlockId is missing, let EndBlockId be FinalBlockId
116
117
23. if the last component of Name is greater than or equal to EndBlockId, abort these steps, insert process ends
118
119
24. increment the last component of Name
120
121
25. go to step 17
122
123
26. retrieve data with this data another 2 times. If these 2 retrieval both failes, abort these steps. if success, go to step 21
124
125
27. retrieve data with this data another 2 times. If these 2 retrieval both failes, abort these steps. if success, go to step 14
126
127
If EndBlockId Missing Timeout timer starts, repo will monitor this timer during step 17~26. If this timeout occurs, abort insert command process immediately.
128
129
Implementation MAY pipeline the Interests.
130
131
### Repo insert check command progress
132
133
Implementation MAY publish a notification of status regarding insert progress. The process of status check is as follows:
134
135
1. start to authorize the insert status command, if fails go to 2, if success, go to 3
136
137
2. send a negative response indicating authorization failure, and abort these steps (StatusCode: 401)
138
139 8 weijia yuan
3. start to check the progress of the insert with the data name in the command. If no such progress is found, go to 4. Or go to 5.
140 1 Alex Afanasyev
141 5 Alex Afanasyev
4. response status with status code, abort check process. (StatusCode: 404)
142 1 Alex Afanasyev
143 7 weijia yuan
5. check the status of insertion. return the status of insertion progress. If a EndBlockId Missing Timeout timer is running, set this timer to 0. Abort check process. (StatusCode: 300)
144 1 Alex Afanasyev
145
### Protocol diagram:
146
147
    Requester                     Repo                          Data producer
148
        |                           |                                 |
149
        |                           |                                 |
150
      +---+  Insert command       +---+                               |
151
      |   | --------------------> |   |                               |
152
      +---+                       |   |                               |
153
        |                         |   |                               |
154
      +---+   Confirm start       |   |                               |
155
      |   | <==================== |   |                               |
156
      +---+   Reject command      +---+                               |
157
        |     (with status code)    |                                 |
158
        |                         +---+     Interest for Data       +---+
159
        |                         |   | --------------------------> |   |
160
        |                         +---+                             |   |
161
        |                           |                               |   |
162
        |                         +---+       Data segment          |   |
163
        |                         |   | <========================== |   |
164
        |                         +---+                             +---+
165
        |                           |                                 |
166
        |                           ~                                 ~
167
        |                           ~                                 ~
168
        |                           |                                 |
169
        |                         +---+     Interest for Data       +---+
170
        |                         |   | --------------------------> |   |
171
        |                         +---+                             |   |
172
        |                           |                               |   |
173
        |                         +---+       Data segment          |   |
174
        |                         |   | <========================== |   |
175
        |                         +---+                             +---+
176
        |                           |                                 |
177
        |                           |                                 |
178
        |                           ~                                 ~
179
        |                           ~                                 ~
180
        |                           |                                 |
181
        |                           |                                 |
182
        |                           |                                 |
183
      +---+   Status interest     +---+                               |
184
      |   | --------------------> |   |                               |
185
      +---+                       |   |                               |
186
        |                         |   |                               |
187
      +---+    Status response    |   |                               |
188
      |   | <==================== |   |                               |
189
      +---+                       +---+                               |
190
        |                           |                                 |
191
        |                           |                                 |