Project

General

Profile

Basic Repo Insertion Protocol » History » Version 2

Alex Afanasyev, 07/23/2014 04:37 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
The name semantics follows the format of the repo command. The <command verb> is defined as ``insert``.
7
For example, for ``<repo prefix>`` as ``/ucla/cs/repo``, the following is an example:
8
9
    /ucla/cs/repo/insert/<RepoCommandParameter>/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue>
10
11
### Insertion status check
12
13
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:
14
15
<command verb> equals to ``insert check``. For example:
16
17
    /ucla/cs/repo/insert check/<RepoCommandParameter>/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue>
18
19
### RepoCommandParameter
20
21
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.
22
23
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.
24
25
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.
26
27
### Insertatation status response
28
29
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.
30
31
StatusCode indicates the status of insertion. InsertNum represents how many data has been intersted 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 gernerated by repo.
32
33
For insert cammand, 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.
34
35
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.
36
37
StatusCode Definition:
38
39
``StatusCode`` | Description
40
-------------- | ----------------------------------------------
41
``100``        | The command is OK. can start to fetch the data
42
``200``        | All the data has been inserted
43
``300``        | This insertion is in progress
44
``401``        | This insertion command or insertion check command is invalidated
45
``402``        | Selectors and BlockId both present
46
``403``        | Malformed Command
47
``404``        | No such this insertion is in progress
48
``405``        | EndBlockId Missing Timeout
49
50
### EndBlockId Missing Timeout
51
52
If StartBlockId presents but EndBlockId is missing, and returned data packets do not contain FinalBlockId, the repo will continuosly fetch the data. An EndBlockId missing timeout is set to prevent this ocassion. 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.
53
54
### Protocol Process
55
56
1. start to authorize the command; if authorization does not fail immediately, go to step 3
57
58
2. send a negative response indicating authorization failure, and abort these steps, insert process ends (StatusCode: 401)
59
60
3. if  both StartBlockId and EndBlockId are missing, go to step 7
61
62
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)
63
64
5. if both StartBlockId and EndBlockId are present, and StartBlockId is less than or equal to EndBlockId, go to step 7
65
66
6. send a negative response indicating malformed command, and abort these steps, insert process ends (StatusCode: 403)
67
68
7. wait for authorization completion
69
70
8. if authorization fails, go to step 2 (StatusCode: 401)
71
72
9. send a positive response indicating insert is in progress (StatusCode: 200)
73
74
10. if either StartBlockId or EndBlockId is present, go to step 16
75
76
11. start to retrieve Name with selectors in insert command
77
78
12. wait for retrieval completion
79
80
13. if retrieval fails, go to step 27
81
82
14. store retrieved Data packet
83
84
15. abort these steps, insert process ends
85
86
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.
87
88
17. append StartBlockId to Name
89
90
18. start to retrieve Name
91
92
19. wait for retrieval completion
93
94
20. if retrieval fails, go to step 26
95
96
21. store retrieved Data packet
97
98
22. if retrieved Data packet contains FinalBlockId, and FinalBlockId is less than EndBlockId or EndBlockId is missing, let EndBlockId be FinalBlockId
99
100
23. if the last component of Name is greater than or equal to EndBlockId, abort these steps, insert process ends
101
102
24. increment the last component of Name
103
104
25. go to step 17
105
106
26. retrieve data with this data another 2 times. If these 2 retrieval both failes, abort these steps. if success, go to step 21
107
108
27. retrieve data with this data another 2 times. If these 2 retrieval both failes, abort these steps. if success, go to step 14
109
110
If EndBlockId Missing Timeout timer starts, repo will monitor this timer during step 17~26. If this timeout occurs, abort insert command process immediately.
111
112
Implementation MAY pipeline the Interests.
113
114
### Repo insert check command progress
115
116
Implementation MAY publish a notification of status regarding insert progress. The process of status check is as follows:
117
118
1. start to authorize the insert status command, if fails go to 2, if success, go to 3
119
120
2. send a negative response indicating authorization failure, and abort these steps (StatusCode: 401)
121
122
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.
123
124
4. reponse status with status code, abort check process. (StatusCode: 404)
125
126
5. ckeck the status of insertion. return the status of insertion progress. If a EndBlockId Missing Timeour timer is running, set this timer to 0. About check process. (StatusCode: 300)
127
128
### Protocol diagram:
129
130
    Requester                     Repo                          Data producer
131
        |                           |                                 |
132
        |                           |                                 |
133
      +---+  Insert command       +---+                               |
134
      |   | --------------------> |   |                               |
135
      +---+                       |   |                               |
136
        |                         |   |                               |
137
      +---+   Confirm start       |   |                               |
138
      |   | <==================== |   |                               |
139
      +---+   Reject command      +---+                               |
140
        |     (with status code)    |                                 |
141
        |                         +---+     Interest for Data       +---+
142
        |                         |   | --------------------------> |   |
143
        |                         +---+                             |   |
144
        |                           |                               |   |
145
        |                         +---+       Data segment          |   |
146
        |                         |   | <========================== |   |
147
        |                         +---+                             +---+
148
        |                           |                                 |
149
        |                           ~                                 ~
150
        |                           ~                                 ~
151
        |                           |                                 |
152
        |                         +---+     Interest for Data       +---+
153
        |                         |   | --------------------------> |   |
154
        |                         +---+                             |   |
155
        |                           |                               |   |
156
        |                         +---+       Data segment          |   |
157
        |                         |   | <========================== |   |
158
        |                         +---+                             +---+
159
        |                           |                                 |
160
        |                           |                                 |
161
        |                           ~                                 ~
162
        |                           ~                                 ~
163
        |                           |                                 |
164
        |                           |                                 |
165
        |                           |                                 |
166
      +---+   Status interest     +---+                               |
167
      |   | --------------------> |   |                               |
168
      +---+                       |   |                               |
169
        |                         |   |                               |
170
      +---+    Status response    |   |                               |
171
      |   | <==================== |   |                               |
172
      +---+                       +---+                               |
173
        |                           |                                 |
174
        |                           |                                 |