-
Notifications
You must be signed in to change notification settings - Fork 0
/
apiary.apib
275 lines (187 loc) · 5.52 KB
/
apiary.apib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
FORMAT: 1A
HOST: http://localhost:8081/
# Nutchpy to Nutch REST API
This API incorporates the functions of NutchPy (https://github.com/ContinuumIO/nutchpy)
into the Nutch REST service.
## Group Reader
This provides an endpoint to read the various files generated by Nutch.
## Sequence File Reader [/reader/sequence]
This is a general reader for any type of sequence file.
### Read entire contents of a file [GET/reader/sequence/read]
+ Request (application/json)
{
"path": "<FULL-PATH-TO-SEQ-FILE>/data"
}
+ Response 200 (application/json)
{ [
[line1],
[line2],
[line3],
.....
] }
### Read a given number of rows from start [GET/reader/sequence/read{?nrows}]
+ Parameter
+ nrows: 10 (optional, number) - The number of rows to read from the start of the file
+ Request (application/json)
{
"path": "<FULL-PATH>/data",
}
+ Response 200 (application/json)
{[
[line1],
[line2],
.....,
[line n]
]}
### Read a slice of the file [GET/reader/sequence/read{?start,end}]
+ Parameter
+ start: 5 (optional, number) - Row to start reading from
+ end: 10 (optional, number) - Number of the row to read the file till
+ Request (application/json)
{
"path": "<FULL-PATH>/data",
}
+ Response 200 (application/json)
{[
[start line],
[line2],
.....,
[end line]
]}
### Get the total count of number of rows in the file [GET /reader/sequence/read{?count}]
+ Parameter
+ count: true (required, boolean)
+ Request (application/json)
{
"path": "<FULL-PATH>/data",
}
+ Response 200 (text/plain)
100
## Node Reader [/reader/node]
The node reader reads a nodes from the Nutch webgraph.
### Get schema of Node reader response [GET]
+ Response 200 (application/json)
{
"key_url":"string",
"num_inlinks": "int",
"num_outlinks": "int",
"inlink_score": "float",
"outlink_score": "float",
"metadata": "string"
}
### Read all nodes from file [GET/reader/node/read]
+ Request (application/json)
{
"path": "<FULL-PATH-TO-NODE-FILE>/data"
}
+ Response 200 (application/json)
{
{node1},
{node2},
{node3},
.....
}
### Read a given number of nodes from start [GET/reader/node/read{?nrows}]
+ Parameter
+ nrows: 10 (optional, number) - The number of nodes to read from the start of the file
+ Request (application/json)
{
"path": "<FULL-PATH-TO-NODE-FILE>/data",
}
+ Response 200 (application/json)
{
{node1},
{node2},
{node3},
.....,
{nodeN}
}
### Read a slice of the file [GET/reader/node/read{?start,end}]
+ Parameter
+ start: 5 (optional, number) - Row to start reading from
+ end: 10 (optional, number) - Number of the row to read the file till
+ Request (application/json)
{
"path": "<FULL-PATH-TO-NODE-FILE>/data",
}
+ Response 200 (application/json)
{
{start node},
{node2},
{node3},
.....,
{end node}
}
### Get the total count of number of nodes in the file [GET /reader/node/read{?count}]
+ Parameter
+ count: true (required, boolean)
+ Request (application/json)
{
"path": "<FULL-PATH-TO-NODE-FILE>/data",
}
+ Response 200 (text/plain)
100
## Link Reader [/reader/link]
The link reader reads a link from the Nutch webgraph.
### Get schema of link reader response [GET/reader/link]
+ Response 200 (application/json)
{
"key_url":"string",
"url": "string",
"anchor": "string",
"score": "float",
"timestamp": "int",
"linktype": "string"
}
### Read all links from the file [GET/reader/link/read]
+ Request (application/json)
{
"path": "<FULL-PATH-TO-LINK-FILE>/data"
}
+ Response 200 (application/json)
{
{link1},
{link2},
{link3},
.....
}
### Read a given number of links from start [GET/reader/link/read{?nrows}]
+ Parameter
+ nrows: 10 (optional, number) - The number of rows to read from the start of the file
+ Request (application/json)
{
"path": "<FULL-PATH-TO-LINK-FILE>/data",
}
+ Response 200 (application/json)
{
{link1},
{link2},
{link3},
.....,
{linkN}
}
### Read a slice of the file [GET/reader/link/read{?start,end}]
+ Parameter
+ start: 5 (optional, number) - Row to start reading from
+ end: 10 (optional, number) - Number of the row to read the file till
+ Request (application/json)
{
"path": "<FULL-PATH-TO-LINK-FILE>/data",
}
+ Response 200 (application/json)
{
{start link},
{link2},
{link3},
.....,
{end link}
}
### Get the total count of number of links in the file [GET /reader/link/read{?count}]
+ Parameter
+ count: true (required, boolean)
+ Request (application/json)
{
"path": "<FULL-PATH-TO-LINK-FILE>/data",
}
+ Response 200 (text/plain)
100