-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi-spec.yaml
More file actions
1088 lines (1051 loc) · 28.8 KB
/
openapi-spec.yaml
File metadata and controls
1088 lines (1051 loc) · 28.8 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
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
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: "3.0.0"
info:
version: 0.0.1
title: HPC Gateway Interface
license:
name: "Apache 2.0"
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
paths:
# handle population of services
/services:
get:
summary: "Get all available services"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_all_services
responses:
200:
description: List of all available HPC services
content:
application/json:
schema:
type: array
description: List of all available HPC services
items:
$ref: '#/components/schemas/HPCService'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: An error has occurred
content:
application/json:
schema:
type: string
# manage and monitor job status
/job:
post:
summary: "Submit a new job"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: submit_new_job
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/JobRequest"
responses:
201:
description: Job was submitted successfully
content:
application/json:
schema:
$ref: "#/components/schemas/JobStatus"
400:
description: Invalid job request
content:
application/json:
schema:
type: string
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: There was an error during job submission
content:
application/json:
schema:
type: string
/job/{job_id}:
get:
summary: "Get job status"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_job_status
parameters:
- name: job_id
in: path
required: true
schema:
type: string
format: uuid
responses:
200:
description: Job status returned
content:
application/json:
schema:
$ref: '#/components/schemas/JobStatus'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: Job not found
content:
application/json:
schema:
type: string
500:
description: There was an error during job status retrieval
content:
application/json:
schema:
type: string
# handle population of infrastructures
/infrastructure:
post:
summary: "Create a new infrastructure"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: create_new_infrastructure
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/Infrastructure"
responses:
201:
description: Infrastructure was created successfully
content:
application/json:
schema:
$ref: "#/components/schemas/InfrastructureSummary"
400:
description: Invalid infrastructure request
content:
application/json:
schema:
type: string
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: There was an error during infrastructure creation
content:
application/json:
schema:
type: string
/infrastructure/{infrastructure_name}:
get:
summary: "Get infrastructure"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_infrastructure
parameters:
- name: infrastructure_name
in: path
required: true
schema:
type: string
responses:
200:
description: Infrastructure returned
content:
application/json:
schema:
$ref: '#/components/schemas/InfrastructureSummary'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: Infrastructure not found
content:
application/json:
schema:
type: string
500:
description: There was an error during infrastructure retrieval
content:
application/json:
schema:
type: string
/infrastructure/{infrastructure_name}/telemetry:
get:
summary: "Get infrastructure telemetry"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_infrastructure_telemetry
parameters:
- name: infrastructure_name
in: path
required: true
schema:
type: string
responses:
200:
description: Infrastructure telemetry returned
content:
application/json:
schema:
$ref: '#/components/schemas/InfrastructureTelemetry'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: Infrastructure not found
content:
application/json:
schema:
type: string
500:
description: There was an error during infrastructure telemetry retrieval
content:
application/json:
schema:
type: string
# data transfers
/data:
post:
summary: "Transfer a remote HTTP file to the target infrastructure"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: transfer_remote_file
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/FileTransferRequest"
responses:
201:
description: File transferred successfully
content:
application/json:
schema:
$ref: "#/components/schemas/FileTransferStatus"
400:
description: Invalid data request
content:
application/json:
schema:
type: string
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: There was an error during file transfer
content:
application/json:
schema:
type: string
/data/{file_transfer_id}:
get:
summary: "Get file transfer status"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_file_transfer_status
parameters:
- name: file_transfer_id
in: path
required: true
schema:
type: string
format: uuid
responses:
200:
description: File transfer status returned
content:
application/json:
schema:
$ref: '#/components/schemas/FileTransferStatus'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: File transfer not found
content:
application/json:
schema:
type: string
500:
description: There was an error during file transfer retrieval
content:
application/json:
schema:
type: string
/s3_data:
post:
summary: "Transfer an S3 object to the target infrastructure"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: transfer_remote_s3_file
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/S3FileTransferRequest"
responses:
201:
description: File transferred successfully
content:
application/json:
schema:
$ref: "#/components/schemas/S3FileTransferStatus"
400:
description: Invalid data request
content:
application/json:
schema:
type: string
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: There was an error during S3 file transfer
content:
application/json:
schema:
type: string
/s3_data/{file_transfer_id}:
get:
summary: "Get S3 file transfer status"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_s3_file_transfer_status
parameters:
- name: file_transfer_id
in: path
required: true
schema:
type: string
format: uuid
responses:
200:
description: S3 file transfer status returned
content:
application/json:
schema:
$ref: '#/components/schemas/S3FileTransferStatus'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: S3 file transfer not found
content:
application/json:
schema:
type: string
500:
description: There was an error during s3 file transfer retrieval
content:
application/json:
schema:
type: string
/s3_result:
post:
summary: "Transfer the results from HPC to an S3 bucket"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: transfer_remote_s3_results
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/S3ResultTransferRequest"
responses:
201:
description: File transferred successfully
content:
application/json:
schema:
$ref: "#/components/schemas/S3ResultTransferStatus"
400:
description: Invalid data request
content:
application/json:
schema:
type: string
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
500:
description: There was an error during file transfer to S3
content:
application/json:
schema:
type: string
/s3_result/{file_transfer_id}:
get:
summary: "Get S3 result transfer status"
# security:
# - apiKey: [ ]
# - oauth2: [ email ]
operationId: get_s3_result_transfer_status
parameters:
- name: file_transfer_id
in: path
required: true
schema:
type: string
format: uuid
responses:
200:
description: S3 result transfer status returned
content:
application/json:
schema:
$ref: '#/components/schemas/S3ResultTransferStatus'
# 401:
# description: Unauthorized request
# content:
# application/json:
# schema:
# type: string
404:
description: S3 result transfer not found
content:
application/json:
schema:
type: string
500:
description: There was an error during s3 result transfer retrieval
content:
application/json:
schema:
type: string
components:
schemas:
HPCService:
description: Description of the HPC service
type: object
required:
- name
properties:
name:
description: Name of the service
$ref: "#/components/schemas/ServiceName"
ServiceName:
type: string
enum:
- kalman
- fft
- min_max
- savitzky_golay
- black_scholes
- wavelet
- kmean
- knn
Infrastructure:
description: Infrastructure schema
type: object
required:
- name
- host
- username
- hostname
- scheduler
- ssh_key
properties:
name:
type: string
host:
type: string
username:
type: string
hostname:
type: string
scheduler:
$ref: "#/components/schemas/HPCSchedulerType"
ssh_key:
description: ssh key object
type: object
properties:
type:
$ref: "#/components/schemas/SSHKeyType"
path:
type: string
password:
type: string
InfrastructureSummary:
description: Infrastructure schema
type: object
required:
- name
- host
- hostname
- scheduler
properties:
name:
type: string
host:
type: string
hostname:
type: string
scheduler:
$ref: "#/components/schemas/HPCSchedulerType"
InfrastructureTelemetry:
description: Infrastructure telemetry schema
type: object
required:
- name
- host
- hostname
- scheduler
- partitions
properties:
name:
type: string
host:
type: string
hostname:
type: string
scheduler:
$ref: "#/components/schemas/HPCSchedulerType"
partitions:
type: array
items:
$ref: '#/components/schemas/PartitionTelemetry'
PartitionTelemetry:
description: Partition telemetry schema
type: object
required:
- name
- total_nodes
- avail_nodes
- total_cpus
- avail_cpus
- running_jobs
- queued_jobs
properties:
name:
type: string
total_nodes:
type: integer
avail_nodes:
type: integer
total_cpus:
type: integer
avail_cpus:
type: integer
running_jobs:
type: integer
queued_jobs:
type: integer
HPCSchedulerType:
type: string
enum:
- pbs
- slurm
SSHKeyType:
type: string
enum:
- ssh-rsa
- ssh-ed25519
JobRequest:
description: Job request schema
type: object
required:
- services
- infrastructure
properties:
services:
description: list of services to use for a job
type: array
items:
$ref: "#/components/schemas/ServiceName"
infrastructure:
description: Name of the HPC infrastructure
type: string
params:
description: arbitrary parameters passed for a job
$ref: "#/components/schemas/JobRequestParams"
watch_period:
description: How often to invoke the checking of job status
type: number
format: float
default: 10.0
JobStatus:
description: Job status schema
type: object
required:
- id
- scheduler_id
- infrastructure
- status
# - success
properties:
id:
description: UUID of the job
type: string
format: uuid
scheduler_id:
description: ID returned by batch scheduler
type: string
infrastructure:
description: Name of the HPC infrastructure
type: string
status:
description: Status of the job
$ref: "#/components/schemas/JobStatusCode"
# exit_code:
# description: Exit code of the job
# type: integer
# minimum: 0
# maximum: 255
# success:
# description: Flag whether the job is successful for simpler statuses
# type: boolean
JobRequestParams:
description: Job request parameters
type: object
required:
- read_input_data
properties:
icase:
description: Selection of kernel
type: integer
default: -1
ideko_kernel:
description: Select a group of kernels, belonging to a IDEKO use case
type: integer
default: 1
inbestme_kernel:
description: Select a group of kernels, belonging to a INBESTME use case
type: integer
default: 0
csv_output:
description: Pack the output into CSV
type: integer
default: 1
filter:
description: Specific to signal processing
type: object
properties:
kalman:
description: Enable kalman filter
type: integer
default: 0
fft:
description: Enable fft filter
type: integer
default: 0
min_max:
description: Enable min_max filter
type: integer
default: 0
savitzky_golay:
description: Enable savitzky_golay filter
type: integer
default: 0
black_scholes:
description: Enable black_scholes filter
type: integer
default: 0
wavelet:
description: Enable wavelet filter
type: integer
default: 0
kalman:
description: kalman filter config
type: object
properties:
r:
description: R parameter
type: integer
default: 10
fft:
description: fft filter config
type: object
min_max:
description: min_max filter config
type: object
savitzky_golay:
description: savitzky_golay filter config
type: object
black_scholes:
description: black_scholes filter config
type: object
wavelet:
description: wavelet filter config
type: object
kmean:
description: kmean config
type: object
properties:
cluster_number:
description: Number of clusters
type: integer
default: 2
epsilon_criteria:
description: Epsilon criteria
type: number
format: float
default: 0.00001
knn:
description: acb
type: object
properties:
cluster_number:
description: Number of clusters
type: integer
default: 2
k_nearest_neighbor:
description: k nearest neighbors
type: integer
default: 7
benchmark_state:
description: Benchmark state
type: integer
default: 0
num_mpi_procs:
description: Number of MPI processes
type: integer
default: 4
num_thread:
description: Number of threads
type: integer
default: 1
perforation_stride:
description: Perforation stride
type: integer
default: 1
precision_scenario:
description: Transprecision scenario
type: integer
default: 1
num_numa:
description: NUMA number
type: integer
default: 8
num_core_numa:
description: NUMA core number
type: integer
default: 16
root_dir:
description: Working directory
type: string
default: "${HOME}/serrano"
workspace:
description: Data workspace
type: string
default: "/data"
profiling_workspace:
description: Profiling workspace
type: string
default: "/profile"
read_input_data:
description: Initial input data
type: string
input_data_double:
description: Binary input data double precision
type: string
default: "/Input_Data/Double_Data_Type/signalFilter"
input_data_float:
description: Binary input data float precision
type: string
default: "/Input_Data/Float_Data_Type/signalFilter"
inference_knn_path:
description: Path to KNN inference
type: string
default: "/Init_Data/inference_data_position/"
clustering_label_path:
description: Path to clustering label
type: string
default: "/Output_Data/KMean/KMean_cluster.csv"
exe:
description: Path to exe binary
type: string
default: "build/SERRANO"
FileTransferRequest:
description: File transfer request schema
type: object
required:
- src
- dst
- infrastructure
properties:
src:
description: URI of a source file to download. Support http, https, ftp and s3 as a protocol
type: string
format: uri
dst:
description: Path in the file system of the infrastructure to save the src file to
type: string
infrastructure:
description: Name of the HPC infrastructure
type: string
FileTransferStatus:
description: File transfer status schema
type: object
required:
- id
- status
- src
- dst
- infrastructure
properties:
id:
description: UUID of the file transfer
type: string
format: uuid
src:
description: URI of a source file to download. Support http, https, ftp and s3 as a protocol
type: string
format: uri
dst:
description: Path in the file system of the infrastructure to save the src file to
type: string
infrastructure:
description: Name of the HPC infrastructure
type: string
status:
description: Status of the file transfer
$ref: "#/components/schemas/FileTransferStatusCode"
reason:
description: Additional information, when something went wrong
type: string
default: ""
S3FileTransferRequest:
description: S3 file transfer request schema
type: object
required:
- endpoint
- bucket
- object
- region
- access_key
- secret_key
- dst
- infrastructure
properties:
endpoint:
description: S3 endpoint URL
type: string
bucket:
description: Name of the bucket
type: string
object:
description: Name of the object in the bucket to download
type: string
region:
description: Name of the storage region
type: string
default: local
access_key:
description: Access key
type: string
secret_key:
description: Secret key
type: string
dst:
description: Path in the file system of the infrastructure to save the S3 object to
type: string
infrastructure:
description: Name of the HPC infrastructure
type: string
S3FileTransferStatus:
description: File transfer status schema
type: object
required:
- id
- status
- endpoint
- bucket
- object
- region
- dst
- infrastructure
properties:
id:
description: UUID of the file transfer
type: string
format: uuid
endpoint:
description: S3 endpoint URL
type: string
bucket:
description: Name of the bucket
type: string
object:
description: Name of the object in the bucket to download
type: string
region:
description: Name of the storage region
type: string
default: local
dst:
description: Path in the file system of the infrastructure to save the S3 object to
type: string
infrastructure:
description: Name of the HPC infrastructure
type: string
status:
description: Status of the file transfer
$ref: "#/components/schemas/FileTransferStatusCode"
reason:
description: Additional information, when something went wrong
type: string
default: ""
S3ResultTransferRequest:
description: S3 result transfer request schema
type: object
required:
- endpoint
- bucket
- object
- region
- access_key
- secret_key
- src
- infrastructure
properties:
endpoint:
description: S3 endpoint URL
type: string
bucket:
description: Name of the bucket
type: string
object:
description: Name of the object in the bucket to upload
type: string
region:
description: Name of the storage region
type: string
default: local
access_key:
description: Access key
type: string
secret_key:
description: Secret key
type: string