-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcompaction-api.yaml
More file actions
291 lines (286 loc) · 8.4 KB
/
compaction-api.yaml
File metadata and controls
291 lines (286 loc) · 8.4 KB
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
openapi: 3.0.3
info:
title: Dataset Compaction API
description: API for manual compaction of Smart Cache Graph datasets.
version: 0.82.8
servers:
- url: http://localhost:3030/
description: Base path for compaction operations.
components:
securitySchemes:
BearerAuth:
description: Generic Bearer Authentication is supported using JWTs
type: http
scheme: bearer
bearerFormat: JWT
AwsBearerAuth:
description: |
For AWS usage we support JWTs that are injected into requests by the ELB.
Since these come in a non-standard HTTP header we have to declare this as
an API Key scheme in OpenAPI spec as it doesn't have a notion of using a
HTTP scheme in a non-standard way (yay AWS weirdness!)
type: apiKey
in: header
name: X-Amzn-Oidc-Data
schemas:
CompactionSummaryResponse:
type: object
required:
- status
- datasets
properties:
status:
type: string
example: ok
datasets:
type: object
description: Map of dataset path to compaction outcome.
additionalProperties:
type: string
enum:
- COMPACTED
- SKIPPED_ALREADY_COMPACTED
- SKIPPED_PREVIOUSLY_COMPACTED
- SKIPPED_LOCK_CONTENTION
- SKIPPED_NOT_TDB2
AsyncCompactionSubmission:
type: object
required:
- job-id
- operation
- status
- status-path
- message
properties:
job-id:
type: string
operation:
type: string
enum:
- COMPACT_DATASET
- COMPACT_ALL_DATASETS
status:
type: string
enum:
- PENDING
- RUNNING
- SUCCEEDED
- FAILED
status-path:
type: string
message:
type: string
CompactionJobStatus:
type: object
required:
- job-id
- operation
- status
- status-path
- message
- submitted-at
properties:
job-id:
type: string
operation:
type: string
status:
type: string
enum:
- PENDING
- RUNNING
- SUCCEEDED
- FAILED
status-path:
type: string
message:
type: string
submitted-at:
type: string
format: date-time
started-at:
type: string
format: date-time
completed-at:
type: string
format: date-time
http-status:
type: integer
result:
oneOf:
- $ref: '#/components/schemas/CompactionSummaryResponse'
- type: object
properties:
error:
type: string
security:
- BearerAuth: []
- AwsBearerAuth: []
paths:
/$/compact/{datasetName}:
post:
summary: Compact a single dataset
description: |
Attempts compaction for a single configured dataset.
Returns a structured outcome payload when compaction succeeds or is skipped.
parameters:
- name: datasetName
in: path
required: true
description: Dataset name (without leading slash), for example `knowledge`.
schema:
type: string
- name: async
in: query
required: false
description: When `true`, submit compaction as an asynchronous job and poll the returned `status-path`.
schema:
type: boolean
responses:
'200':
description: Compaction request handled successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/CompactionSummaryResponse'
'202':
description: Compaction job accepted for asynchronous execution.
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncCompactionSubmission'
'401':
description: Unauthorized due to missing role/permission.
'500':
description: Compaction failed while handling the request.
content:
text/plain:
schema:
type: string
example: Compaction failed for dataset /knowledge: <reason>
/$/compactall:
post:
summary: Compact all configured datasets
description: |
Attempts compaction for each configured dataset and returns per-dataset outcomes.
If one or more dataset compactions fail with exceptions, the endpoint returns 500.
parameters:
- name: async
in: query
required: false
description: When `true`, submit compaction as an asynchronous job and poll the returned `status-path`.
schema:
type: boolean
responses:
'200':
description: Compaction request handled successfully.
content:
application/json:
schema:
$ref: '#/components/schemas/CompactionSummaryResponse'
'202':
description: Compaction job accepted for asynchronous execution.
content:
application/json:
schema:
$ref: '#/components/schemas/AsyncCompactionSubmission'
'401':
description: Unauthorized due to missing role/permission.
'500':
description: One or more dataset compactions failed.
content:
text/plain:
schema:
type: string
example: Compaction failed for one or more datasets: /knowledge=<reason>
/$/compaction/jobs/{datasetName}:
get:
summary: List asynchronous jobs for a dataset compaction endpoint
parameters:
- name: datasetName
in: path
required: true
schema:
type: string
responses:
'200':
description: Known asynchronous jobs for this dataset.
content:
application/json:
schema:
type: object
properties:
jobs:
type: array
items:
$ref: '#/components/schemas/CompactionJobStatus'
'401':
description: Unauthorized due to missing role/permission.
/$/compaction/jobs/{datasetName}/{jobId}:
get:
summary: Get asynchronous dataset compaction job status
parameters:
- name: datasetName
in: path
required: true
schema:
type: string
- name: jobId
in: path
required: true
schema:
type: string
responses:
'200':
description: Current state of the asynchronous compaction job.
content:
application/json:
schema:
type: object
properties:
job:
$ref: '#/components/schemas/CompactionJobStatus'
'401':
description: Unauthorized due to missing role/permission.
'404':
description: Unknown job id.
/$/compaction/jobs/all:
get:
summary: List asynchronous jobs for compact-all requests
responses:
'200':
description: Known asynchronous compact-all jobs.
content:
application/json:
schema:
type: object
properties:
jobs:
type: array
items:
$ref: '#/components/schemas/CompactionJobStatus'
'401':
description: Unauthorized due to missing role/permission.
/$/compaction/jobs/all/{jobId}:
get:
summary: Get asynchronous compact-all job status
parameters:
- name: jobId
in: path
required: true
schema:
type: string
responses:
'200':
description: Current state of the asynchronous compact-all job.
content:
application/json:
schema:
type: object
properties:
job:
$ref: '#/components/schemas/CompactionJobStatus'
'401':
description: Unauthorized due to missing role/permission.
'404':
description: Unknown job id.