forked from spark-jobserver/spark-jobserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
683 lines (648 loc) · 17 KB
/
swagger.yaml
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
swagger: "2.0"
info:
description: "A RESTful interface for submitting and managing Apache Spark jobs, jars, and job contexts.\nSee https://github.com/spark-jobserver/spark-jobserver"
version: "0.9.1"
title: "Spark Jobserver"
host: "localhost:8090"
basePath: "/"
schemes:
- "https"
- "http"
paths:
#
# BINARIES
#
/binaries:
#
# GET /binaries/
#
get:
tags:
- "Binaries"
summary: "List all binaries"
description: "Returns a list of all currently uploaded binary files"
produces:
- "application/json"
responses:
200:
description: "Successful operation.\nNote that the list is returned as an object/map, not as an actual json array."
schema:
$ref: '#/definitions/BinaryList'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# GET /binaries/{name}
#
/binaries/{name}:
get:
tags:
- "Binaries"
summary: "Returns info for a binary"
description: "Returns binary information for the most recent binary uploaded under this name"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/BinaryInfo'
404:
description: "Binary not found"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# POST /binaries/{name}
#
post:
tags:
- "Binaries"
summary: "Upload a new binary file"
description: "Uploads a new binary file under this name.\nIf a binary under this name already existed, it is updated.\nAlready running jobs continue to run with the old version of the binary, but new submits and restarts of a job will run the new binary."
consumes:
- "application/java-archive"
- "application/python-archive"
- "application/python-egg"
- "application/python-wheel"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
- in: body
name: "binary"
description: "Raw .jar, .egg or .whl binary file"
required: true
schema:
type: string
example: <<Raw binary content>>
format: binary
responses:
201:
description: "Binary created"
schema:
$ref: '#/definitions/SuccessMapNoMsg'
400:
description: Wrong binary format
schema:
$ref: '#/definitions/ErrorMap'
415:
description: Unsupported media type (specified in request content-type header)
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# DELETE /binaries/{name}
#
delete:
tags:
- "Binaries"
summary: "Delete a binary"
description: "Deletes all binaries stored under this name"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
responses:
200:
description: Successful operation
schema:
$ref: '#/definitions/SuccessMapNoMsg'
403:
description: The deletion is forbidden, because the binary is still in use by running jobs
schema:
$ref: '#/definitions/ErrorMap'
404:
description: Binary not found
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# CONTEXTS
#
/contexts:
#
# GET /contexts/
#
get:
tags:
- "Contexts"
summary: "List all running contexts"
description: "Returns a list of all currently running contexts"
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/ContextList'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# GET /contexts/{name}
#
/contexts/{name}:
get:
tags:
- "Contexts"
summary: "Returns info for a context"
description: "Returns context information for the last context started with this name"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/ContextInfo'
404:
description: "Context not found"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# POST /contexts/{name}
#
post:
tags:
- "Contexts"
summary: "Create a new context"
description: "Creates a new context with this name.\n In addition the the query parameters below any spark configuration parameter can be can be overriden as a query parameter.\nFor more details see: https://github.com/spark-jobserver/spark-jobserver#context-configuration"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
- in: "query"
name: "dependent-jar-uris"
type: "string"
- in: "query"
name: "context-factory"
type: "string"
description: "Allows to specify context factories for specific types of contexts, e.g:\nspark.jobserver.context.StreamingContextFactory, spark.jobserver.python.PythonFactory, ..."
responses:
200:
description: Successful operation
schema:
$ref: '#/definitions/SuccessMap'
400:
description: "Bad request.\nCommon examples: Context name does not start with a letter, context with this name is already running, context config contains malformed URLs"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: Internal server error
schema:
$ref: '#/definitions/ErrorMap'
#
# DELETE /contexts/{name}
#
delete:
tags:
- "Contexts"
summary: "Stop a context"
description: "Stops a running context with the given name.\nExecutors will be shut down and all cached RDDs and currently running jobs will be lost. Use with care!"
produces:
- "application/json"
parameters:
- in: "path"
name: "name"
required: true
type: "string"
- in: "query"
name: "force"
type: "boolean"
default: false
description: "If true, Jobserver will kill the context forcefully"
responses:
200:
description: Successful operation
schema:
$ref: '#/definitions/SuccessMap'
202:
description: Accepted (context stop in progress)
404:
description: Context not found
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# JOBS
#
/jobs:
#
# GET /jobs/
#
get:
tags:
- "Jobs"
summary: "List jobs"
description: "Returns a list of jobs"
produces:
- "application/json"
parameters:
- in: "query"
name: "limit"
type: "integer"
default: 50
description: "Limit the number of jobs returned"
- in: "query"
name: "status"
type: "string"
description: "Show only jobs with this state. Shows all states if not specified."
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/JobList'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# GET /jobs/{id}
#
/jobs/{id}:
get:
tags:
- "Jobs"
summary: "Returns info for a job"
description: "Returns job information for a job with this id"
produces:
- "application/json"
parameters:
- in: "path"
name: "id"
required: true
type: "string"
responses:
200:
description: "Successful operation.\nJob results are shown if the job is in state FINISHED and results are still cached."
schema:
$ref: '#/definitions/JobInfoResult'
404:
description: "Job not found"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# POST /jobs/{id}
#
post:
tags:
- "Jobs"
summary: "Start a new job"
description: "Starts a new job from a specified binary. "
produces:
- "application/json"
parameters:
- in: "path"
name: "id"
required: true
type: "string"
- in: body
name: "config"
description: "Typesafe-formatted config containing optional job configuration parameters"
schema:
type: string
example: "input.string = a b c a b see"
- in: "query"
name: "cp"
type: "string"
description: "A list of uploaded binaries or URIs to binaries that together form the class path with which the job is started"
required: true
- in: "query"
name: "mainClass"
type: "string"
description: "The fully qualified name of the class which is run when the job is started. Needs to implement the `SparkJob` interface."
required: true
- in: "query"
name: "context"
type: "string"
description: "The name of the context in which the job is run. If not specified, then a temporary context (\"ad hoc context\") is allocated for the job."
- in: "query"
name: "sync"
type: "boolean"
description: "If true, then wait for and return results, otherwise return job Id"
default: false
- in: "query"
name: "timeout"
type: "integer"
description: "The number of seconds to wait for the results if `sync` is specified"
default: false
- in: "query"
name: "appName"
type: "string"
description: "Deprecated, use `cp` instead"
- in: "query"
name: "classPath"
type: "string"
description: "Deprecated, use `mainClass` instead"
responses:
200:
description: Successful operation
schema:
$ref: '#/definitions/JobResultResponse'
202:
description: Job started
schema:
$ref: '#/definitions/JobInfo'
400:
description: "Bad request: Job loading or validation failed (invalid job type or malformed URI)"
schema:
$ref: '#/definitions/ErrorMap'
404:
description: Main class or binary in class path (`cp`) not found
schema:
$ref: '#/definitions/ErrorMap'
409:
description: "Conflict: Context stop in progress"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: Internal server error
schema:
$ref: '#/definitions/ErrorMap'
503:
description: "Too many runnings jobs for this context"
schema:
$ref: '#/definitions/ErrorMap'
#
# DELETE /jobs/{id}
#
delete:
tags:
- "Jobs"
summary: "Stop a job"
description: "Stops a running job with this id"
produces:
- "application/json"
parameters:
- in: "path"
name: "id"
required: true
type: "string"
responses:
200:
description: Successful operation
schema:
type: "object"
properties:
status:
type: "string"
example: "KILLED"
404:
description: No running job found
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# GET /jobs/{id}/config
#
/jobs/{id}/config:
get:
tags:
- "Jobs"
summary: "Returns the job configuration"
description: "Returns the configuration used to launch the job under this id"
produces:
- "application/json"
parameters:
- in: "path"
name: "id"
required: true
type: "string"
responses:
200:
description: "Successful operation"
schema:
type: object
example: {
input : {
string : "a b c a b see"
}
}
404:
description: "Job not found"
schema:
$ref: '#/definitions/ErrorMap'
500:
description: "Internal server error"
schema:
$ref: '#/definitions/ErrorMap'
#
# Health
#
/healthz:
get:
tags:
- "Other"
summary: "Returns jobserver health"
description: "Responds with 200 to indicate that the Jobserver API is up and running.\nOther kinds of health checks are configurable via the `spark.jobserver.healthcheck` property."
produces:
- "application/json"
responses:
200:
description: "Successful operation"
schema:
$ref: '#/definitions/SuccessMapNoMsg'
#
# DEFINITIONS
#
definitions:
ErrorMap:
type: "object"
properties:
status:
type: "string"
example: "ERROR"
result:
type: "object"
example: "Error details"
SuccessMapNoMsg:
type: "object"
properties:
status:
type: "string"
example: "SUCCESS"
SuccessMap:
type: "object"
properties:
status:
type: "string"
example: "SUCCESS"
result:
type: "object"
example: "Success message"
BinaryList:
type: "object"
properties:
app1:
type: "object"
properties:
binary-type:
type: "string"
example: "Jar"
upload-time:
type: "string"
format: "date-time"
app2:
type: "object"
properties:
binary-type:
type: "string"
example: "Jar"
upload-time:
type: "string"
format: "date-time"
BinaryInfo:
type: "object"
properties:
app-name:
type: "string"
example: "app1"
binary-type:
type: "string"
example: "Jar"
upload-time:
type: "string"
format: "date-time"
ContextList:
type: "array"
items:
type: "string"
example : ["context1", "context2"]
ContextInfo:
type: "object"
properties:
name:
type: "string"
example: "context1"
startTime:
type: "string"
format: "date-time"
state:
type: "string"
example: "FINISHED"
endTime:
type: "string"
format: "date-time"
id:
type: "string"
format: "uuid"
JobInfo:
type: "object"
properties:
duration:
type: "string"
example: "Job not done yet"
classPath:
type: "string"
example: "spark.jobserver.WordCountExample"
startTime:
type: "string"
format: "date-time"
context:
type: "string"
example: "context1"
status:
type: "string"
example: "STARTED"
jobId:
type: "string"
format: "uuid"
contextId:
type: "string"
format: "uuid"
JobInfoResult:
type: "object"
properties:
duration:
type: "string"
example: "1.234 secs"
classPath:
type: "string"
example: "spark.jobserver.WordCountExample"
startTime:
type: "string"
format: "date-time"
context:
type: "string"
example: "context1"
result:
$ref: '#/definitions/JobResult'
status:
type: "string"
example: "FINISHED"
jobId:
type: "string"
format: "uuid"
contextId:
type: "string"
format: "uuid"
JobResultResponse:
type: "object"
properties:
jobId:
type: "string"
format: "uuid"
result:
$ref: '#/definitions/JobResult'
JobResult:
type: "object"
properties:
jobId:
type: "string"
format: "uuid"
result:
type: object
example: {
"b": 2,
"a": 2,
"see": 1,
"c": 1
}
JobList:
type: "array"
items:
$ref: '#/definitions/JobInfo'