-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path0.8.22.yml
1816 lines (1816 loc) · 44.4 KB
/
0.8.22.yml
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
name: Jina
description: Jina is the cloud-native neural search solution powered by state-of-the-art
AI and deep learning technology
license: Apache 2.0
vendor: Jina AI Limited
source: https://github.com/jina-ai/jina/tree/master
url: https://jina.ai
docs: https://docs.jina.ai
authors: dev-team@jina.ai
version: 0.8.22
methods:
- name: hello-world
options:
- help: the workdir for hello-world demo, all data, indices, shards and outputs
will be saved there
choices: null
default: 079a3812-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --workdir
type: str
default_random: true
name: workdir
- help: start a log server for the dashboard
choices: null
default: false
required: false
option_strings:
- --logserver
type: bool
default_random: false
name: logserver
- help: the yaml config of the log server
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/logserver.default.yml
required: false
option_strings:
- --logserver-config
type: str
default_random: false
name: logserver_config
- help: specify the proxy when downloading sample data
choices: null
default: null
required: false
option_strings:
- --download-proxy
type: str
default_random: false
name: download_proxy
- help: number of shards when index and query
choices: null
default: 2
required: false
option_strings:
- --shards
type: int
default_random: false
name: shards
- help: number of parallel when index and query
choices: null
default: 2
required: false
option_strings:
- --parallel
type: int
default_random: false
name: parallel
- help: the yaml path of the index flow
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/helloworld.flow.index.yml
required: false
option_strings:
- --uses-index
type: str
default_random: false
name: uses_index
- help: the url of index data (should be in idx3-ubyte.gz format)
choices: null
default: http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/train-images-idx3-ubyte.gz
required: false
option_strings:
- --index-data-url
type: str
default_random: false
name: index_data_url
- help: the url of index labels data (should be in idx3-ubyte.gz format)
choices: null
default: http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/train-labels-idx1-ubyte.gz
required: false
option_strings:
- --index-labels-url
type: str
default_random: false
name: index_labels_url
- help: the batch size in indexing
choices: null
default: 1024
required: false
option_strings:
- --index-batch-size
type: int
default_random: false
name: index_batch_size
- help: the yaml path of the query flow
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/helloworld.flow.query.yml
required: false
option_strings:
- --uses-query
type: str
default_random: false
name: uses_query
- help: the url of query data (should be in idx3-ubyte.gz format)
choices: null
default: http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/t10k-images-idx3-ubyte.gz
required: false
option_strings:
- --query-data-url
type: str
default_random: false
name: query_data_url
- help: the url of query labels data (should be in idx3-ubyte.gz format)
choices: null
default: http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/t10k-labels-idx1-ubyte.gz
required: false
option_strings:
- --query-labels-url
type: str
default_random: false
name: query_labels_url
- help: the batch size in searching
choices: null
default: 32
required: false
option_strings:
- --query-batch-size
type: int
default_random: false
name: query_batch_size
- help: number of queries to visualize
choices: null
default: 128
required: false
option_strings:
- --num-query
type: int
default_random: false
name: num_query
- help: top-k results to retrieve and visualize
choices: null
default: 50
required: false
option_strings:
- --top-k
type: int
default_random: false
name: top_k
- name: pod
options:
- help: the name of this Pea, used to identify the pea/pod and its logs.
choices: null
default: null
required: false
option_strings:
- --name
type: str
default_random: false
name: name
- help: the yaml config of the logger. note the executor inside will inherit this
log config
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/logging.default.yml
required: false
option_strings:
- --log-config
type: str
default_random: false
name: log_config
- help: ==SUPPRESS==
choices: null
default: 079a3823-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --identity
type: str
default_random: true
name: identity
- help: ==SUPPRESS==
choices: null
default: 079a3824-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --log-id
type: str
default_random: true
name: log_id
- help: port for controlling the runtime, default a random port between [49152,
65535]
choices: null
default: 40885
required: false
option_strings:
- --port-ctrl
type: int
default_random: true
name: port_ctrl
- help: use ipc protocol for control socket
choices: null
default: false
required: false
option_strings:
- --ctrl-with-ipc
type: bool
default_random: false
name: ctrl_with_ipc
- help: timeout (ms) of the control request, -1 for waiting forever
choices: null
default: 5000
required: false
option_strings:
- --timeout-ctrl
type: int
default_random: false
name: timeout_ctrl
- help: the SSH server through which the tunnel will be created, can actually be
a fully specified "user@server:port" ssh url.
choices: null
default: null
required: false
option_strings:
- --ssh-server
type: str
default_random: false
name: ssh_server
- help: this specifies a key to be used in ssh login, default None. regular default
ssh keys will be used without specifying this argument.
choices: null
default: null
required: false
option_strings:
- --ssh-keyfile
type: str
default_random: false
name: ssh_keyfile
- help: ssh password to the ssh server.
choices: null
default: null
required: false
option_strings:
- --ssh-password
type: str
default_random: false
name: ssh_password
- help: the config of the executor, it could be > a YAML file path, > an executor's
class name, > a docker image (must start with docker://)> one of "_pass", "_logforward"
> the raw content of YAML config (must starts with "!")
choices: null
default: _pass
required: false
option_strings:
- --uses
type: str
default_random: false
name: uses
- help: the customized python modules need to be imported before loading the executor
choices: null
default: null
required: false
option_strings:
- --py-modules
type: str
default_random: false
name: py_modules
- help: port for input data, default a random port between [49152, 65535]
choices: null
default: 42777
required: false
option_strings:
- --port-in
type: int
default_random: true
name: port_in
- help: port for output data, default a random port between [49152, 65535]
choices: null
default: 47667
required: false
option_strings:
- --port-out
type: int
default_random: true
name: port_out
- help: host address for input, by default it is 0.0.0.0
choices: null
default: 0.0.0.0
required: false
option_strings:
- --host-in
type: str
default_random: false
name: host_in
- help: host address for output, by default it is 0.0.0.0
choices: null
default: 0.0.0.0
required: false
option_strings:
- --host-out
type: str
default_random: false
name: host_out
- help: socket type for input port
choices:
- PULL_BIND
- PULL_CONNECT
- PUSH_BIND
- PUSH_CONNECT
- SUB_BIND
- SUB_CONNECT
- PUB_BIND
- PUB_CONNECT
- PAIR_BIND
- PAIR_CONNECT
- ROUTER_BIND
- DEALER_CONNECT
default: PULL_BIND
required: false
option_strings:
- --socket-in
type: method
default_random: false
name: socket_in
- help: socket type for output port
choices:
- PULL_BIND
- PULL_CONNECT
- PUSH_BIND
- PUSH_CONNECT
- SUB_BIND
- SUB_CONNECT
- PUB_BIND
- PUB_CONNECT
- PAIR_BIND
- PAIR_CONNECT
- ROUTER_BIND
- DEALER_CONNECT
default: PUSH_BIND
required: false
option_strings:
- --socket-out
type: method
default_random: false
name: socket_out
- help: max number of retries when socket is conflict
choices: null
default: 3
required: false
option_strings:
- --max-socket-retries
type: int
default_random: false
name: max_socket_retries
- help: 'serialize the model in the pod every n seconds if model changes. -1 means
--read-only. '
choices: null
default: 240
required: false
option_strings:
- --dump-interval
type: int
default_random: false
name: dump_interval
- help: do not allow the pod to modify the model, dump_interval will be ignored
choices: null
default: false
required: false
option_strings:
- --read-only
type: bool
default_random: false
name: read_only
- help: the data and config files are separated for each pea in this pod, only effective
when BasePod's `parallel` > 1
choices: null
default: false
required: false
option_strings:
- --separated-workspace
type: bool
default_random: false
name: separated_workspace
- help: memory high watermark of this pod in Gigabytes, pod will restart when this
is reached. -1 means no restriction
choices: null
default: -1
required: false
option_strings:
- --memory-hwm
type: int
default_random: false
name: memory_hwm
- help: skip strategy on error message.
choices:
- NONE
- EXECUTOR
- HANDLE
default: NONE
required: false
option_strings:
- --skip-on-error
type: method
default_random: false
name: skip_on_error
- help: ==SUPPRESS==
choices: null
default: 0
required: false
option_strings:
- --num-part
type: int
default_random: false
name: num_part
- help: 'The executor config that is passed to the docker image if a docker image
is used in uses. It cannot be another docker image '
choices: null
default: BaseExecutor
required: false
option_strings:
- --uses-internal
type: str
default_random: false
name: uses_internal
- help: the entrypoint command overrides the ENTRYPOINT in docker image. when not
set then the docker image ENTRYPOINT takes effective.
choices: null
default: null
required: false
option_strings:
- --entrypoint
type: str
default_random: false
name: entrypoint
- help: pull the latest image before running
choices: null
default: false
required: false
option_strings:
- --pull-latest
type: bool
default_random: false
name: pull_latest
- help: the path on the host to be mounted inside the container. they will be mounted
to the root path, i.e. /user/test/my-workspace will be mounted to /my-workspace
inside the container. all volumes are mounted with read-write mode.
choices: null
default: null
required: false
option_strings:
- --volumes
type: str
default_random: false
name: volumes
- help: host address of the runtime, by default it is 0.0.0.0.
choices: null
default: 0.0.0.0
required: false
option_strings:
- --host
type: str
default_random: false
name: host
- help: host port of the gateway, "port-grpc" alias will be removed in future versions
choices: null
default: 58061
required: false
option_strings:
- --port-expose
- --port-grpc
- --port-rest
type: int
default_random: true
name: port_expose
- help: the Pea attempts to terminate all of its Runtime child processes/threads
on existing. setting it to true basically tell the Pea do not wait on the Runtime
when closing
choices: null
default: false
required: false
option_strings:
- --daemon
type: bool
default_random: false
name: daemon
- help: the parallel backend of the runtime inside the pea
choices:
- THREAD
- PROCESS
default: PROCESS
required: false
option_strings:
- --runtime-backend
- --runtime
type: method
default_random: false
name: runtime_backend
- help: the runtime class to run inside the pea
choices:
- GRPCRuntime
- RESTRuntime
- ContainerRuntime
- JinadRuntime
- SSHRuntime
- ZEDRuntime
default: ZEDRuntime
required: false
option_strings:
- --runtime-cls
type: str
default_random: false
name: runtime_cls
- help: timeout (ms) of a pea waits for the runtime to be ready, -1 for waiting
forever
choices: null
default: 10000
required: false
option_strings:
- --timeout-ready
type: int
default_random: false
name: timeout_ready
- help: expose the public IP address to remote when necessary, by default it exposesprivate
IP address, which only allows accessing under the same network/subnet
choices: null
default: false
required: false
option_strings:
- --expose-public
type: bool
default_random: false
name: expose_public
- help: if true then exception stack information to be added to the logging message,
useful in debugging
choices: null
default: false
required: false
option_strings:
- --show-exc-info
type: bool
default_random: false
name: show_exc_info
- help: ==SUPPRESS==
choices: null
default: -1
required: false
option_strings:
- --pea-id
type: int
default_random: false
name: pea_id
- help: ==SUPPRESS==
choices:
- SINGLETON
- HEAD
- TAIL
- PARALLEL
default: SINGLETON
required: false
option_strings:
- --pea-role
type: method
default_random: false
name: pea_role
- help: the executor used before sending to all parallels, accepted type follows
"--uses"
choices: null
default: null
required: false
option_strings:
- --uses-before
type: str
default_random: false
name: uses_before
- help: the executor used after receiving from all parallels, accepted type follows
"--uses"
choices: null
default: null
required: false
option_strings:
- --uses-after
type: str
default_random: false
name: uses_after
- help: number of parallel peas in the pod running at the same time, `port_in` and
`port_out` will be set to random, and routers will be added automatically when
necessary
choices: null
default: 1
required: false
option_strings:
- --parallel
- --shards
type: int
default_random: false
name: parallel
- help: 'ANY: only one (whoever is idle) replica polls the message; ALL: all workers
poll the message (like a broadcast)'
choices:
- ANY
- ALL
- ALL_ASYNC
default: ANY
required: false
option_strings:
- --polling
type: method
default_random: false
name: polling
- help: the strategy of scheduling workload among peas
choices:
- LOAD_BALANCE
- ROUND_ROBIN
default: LOAD_BALANCE
required: false
option_strings:
- --scheduling
type: method
default_random: false
name: scheduling
- help: the way of managing remote runtime
choices:
- SSH
- JINAD
default: JINAD
required: false
option_strings:
- --remote-access
type: method
default_random: false
name: remote_access
- help: the way of managing remote runtime
choices:
- PEA
- POD
default: POD
required: false
option_strings:
- --remote-type
type: method
default_random: false
name: remote_type
- help: ==SUPPRESS==
choices:
- POD
- JOIN
- INSPECT
- GATEWAY
- INSPECT_AUX_PASS
- JOIN_INSPECT
default: null
required: false
option_strings:
- --pod-role
type: method
default_random: false
name: pod_role
- name: flow
options:
- help: a yaml file represents a flow
choices: null
default: null
required: false
option_strings:
- --uses
type: str
default_random: false
name: uses
- help: start a log server for the dashboard
choices: null
default: false
required: false
option_strings:
- --logserver
type: bool
default_random: false
name: logserver
- help: the yaml config of the log server
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/logserver.default.yml
required: false
option_strings:
- --logserver-config
type: str
default_random: false
name: logserver_config
- help: ==SUPPRESS==
choices: null
default: 079a3835-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --log-id
type: str
default_random: true
name: log_id
- help: ==SUPPRESS==
choices: null
default: NONE
required: false
option_strings:
- --optimize-level
type: method
default_random: false
name: optimize_level
- help: type of the output
choices:
- SHELL_PROC
- SHELL_DOCKER
- DOCKER_SWARM
- K8S
default: SHELL_PROC
required: false
option_strings:
- --output-type
type: method
default_random: false
name: output_type
- help: output path of the flow
choices: null
default: null
required: false
option_strings:
- --output-path
type: FileType
default_random: false
name: output_path
- help: strategy on those inspect pods in the flow. if REMOVE is given then all
inspect pods are removed when building the flow
choices:
- HANG
- REMOVE
- COLLECT
default: COLLECT
required: false
option_strings:
- --inspect
type: method
default_random: false
name: inspect
- name: gateway
options:
- help: the name of this Pea, used to identify the pea/pod and its logs.
choices: null
default: gateway
required: false
option_strings:
- --name
type: str
default_random: false
name: name
- help: the yaml config of the logger. note the executor inside will inherit this
log config
choices: null
default: /opt/hostedtoolcache/Python/3.7.9/x64/lib/python3.7/site-packages/jina/resources/logging.default.yml
required: false
option_strings:
- --log-config
type: str
default_random: false
name: log_config
- help: ==SUPPRESS==
choices: null
default: 079a3846-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --identity
type: str
default_random: true
name: identity
- help: ==SUPPRESS==
choices: null
default: 079a3847-4e1b-11eb-a40e-000d3a9c0113
required: false
option_strings:
- --log-id
type: str
default_random: true
name: log_id
- help: port for controlling the runtime, default a random port between [49152,
65535]
choices: null
default: 58541
required: false
option_strings:
- --port-ctrl
type: int
default_random: true
name: port_ctrl
- help: use ipc protocol for control socket
choices: null
default: true
required: false
option_strings:
- --ctrl-with-ipc
type: bool
default_random: false
name: ctrl_with_ipc
- help: timeout (ms) of the control request, -1 for waiting forever
choices: null
default: 5000
required: false
option_strings:
- --timeout-ctrl
type: int
default_random: false
name: timeout_ctrl
- help: the SSH server through which the tunnel will be created, can actually be
a fully specified "user@server:port" ssh url.
choices: null
default: null
required: false
option_strings:
- --ssh-server
type: str
default_random: false
name: ssh_server
- help: this specifies a key to be used in ssh login, default None. regular default
ssh keys will be used without specifying this argument.
choices: null
default: null
required: false
option_strings:
- --ssh-keyfile
type: str
default_random: false
name: ssh_keyfile
- help: ssh password to the ssh server.
choices: null
default: null
required: false
option_strings:
- --ssh-password
type: str
default_random: false
name: ssh_password
- help: the config of the executor, it could be > a YAML file path, > an executor's
class name, > a docker image (must start with docker://)> one of "_pass", "_logforward"
> the raw content of YAML config (must starts with "!")
choices: null
default: _pass
required: false
option_strings:
- --uses
type: str
default_random: false
name: uses
- help: the customized python modules need to be imported before loading the executor
choices: null
default: null
required: false
option_strings:
- --py-modules
type: str
default_random: false
name: py_modules
- help: port for input data, default a random port between [49152, 65535]
choices: null
default: 33677
required: false
option_strings:
- --port-in
type: int
default_random: true
name: port_in
- help: port for output data, default a random port between [49152, 65535]
choices: null
default: 47299
required: false
option_strings:
- --port-out
type: int
default_random: true
name: port_out
- help: host address for input, by default it is 0.0.0.0
choices: null
default: 0.0.0.0
required: false
option_strings:
- --host-in
type: str
default_random: false
name: host_in
- help: host address for output, by default it is 0.0.0.0
choices: null
default: 0.0.0.0
required: false
option_strings:
- --host-out
type: str
default_random: false
name: host_out
- help: socket type for input port
choices:
- PULL_BIND
- PULL_CONNECT
- PUSH_BIND
- PUSH_CONNECT
- SUB_BIND
- SUB_CONNECT
- PUB_BIND
- PUB_CONNECT
- PAIR_BIND
- PAIR_CONNECT
- ROUTER_BIND
- DEALER_CONNECT
default: PULL_CONNECT
required: false
option_strings:
- --socket-in
type: method
default_random: false
name: socket_in
- help: socket type for output port
choices:
- PULL_BIND
- PULL_CONNECT
- PUSH_BIND
- PUSH_CONNECT
- SUB_BIND
- SUB_CONNECT
- PUB_BIND
- PUB_CONNECT
- PAIR_BIND
- PAIR_CONNECT
- ROUTER_BIND
- DEALER_CONNECT
default: PUSH_CONNECT
required: false
option_strings:
- --socket-out
type: method
default_random: false
name: socket_out
- help: max number of retries when socket is conflict
choices: null
default: 3
required: false
option_strings:
- --max-socket-retries
type: int
default_random: false
name: max_socket_retries
- help: 'serialize the model in the pod every n seconds if model changes. -1 means
--read-only. '
choices: null
default: 240
required: false
option_strings:
- --dump-interval
type: int
default_random: false
name: dump_interval
- help: do not allow the pod to modify the model, dump_interval will be ignored
choices: null
default: true
required: false
option_strings:
- --read-only
type: bool
default_random: false
name: read_only
- help: the data and config files are separated for each pea in this pod, only effective
when BasePod's `parallel` > 1
choices: null
default: false
required: false
option_strings:
- --separated-workspace
type: bool
default_random: false
name: separated_workspace
- help: memory high watermark of this pod in Gigabytes, pod will restart when this
is reached. -1 means no restriction
choices: null
default: -1
required: false
option_strings:
- --memory-hwm
type: int
default_random: false
name: memory_hwm
- help: skip strategy on error message.
choices:
- NONE
- EXECUTOR
- HANDLE
default: NONE
required: false
option_strings:
- --skip-on-error
type: method
default_random: false
name: skip_on_error