You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('-jmax','--maxjobs', help='Number of maximal parallel tasks.', default=100)
36
+
parser.add_argument('--dry-run', action='store_true', help='Show what you would do.')
37
+
parser.add_argument('--visualize-workflow', action='store_true', help='Saves a graph visualization of workflow.')
38
+
parser.add_argument('--target-labels', nargs='+', help='Runs the pipeline by target labels (example "TPC" or "DIGI").\
39
+
This condition is used as logical AND together with --target-tasks.', default=[])
40
+
parser.add_argument('-tt','--target-tasks', nargs='+', help='Runs the pipeline by target tasks (example "tpcdigi"). By default everything in the graph is run. Regular expressions supported.', default=["*"])
41
+
parser.add_argument('--produce-script', help='Produces a shell script that runs the workflow in serialized manner and quits.')
42
+
parser.add_argument('--rerun-from', help='Reruns the workflow starting from given task (or pattern). All dependent jobs will be rerun.')
43
+
parser.add_argument('--list-tasks', help='Simply list all tasks by name and quit.', action='store_true')
44
+
45
+
parser.add_argument('--mem-limit', help='Set memory limit as scheduling constraint', default=max_system_mem)
46
+
parser.add_argument('--cpu-limit', help='Set CPU limit (core count)', default=8)
47
+
parser.add_argument('--cgroup', help='Execute pipeline under a given cgroup (e.g., 8coregrid) emulating resource constraints. This m\
48
+
ust exist and the tasks file must be writable to with the current user.')
49
+
parser.add_argument('--stdout-on-failure', action='store_true', help='Print log files of failing tasks to stdout,')
50
+
parser.add_argument('--webhook', help=argparse.SUPPRESS) # log some infos to this webhook channel
51
+
parser.add_argument('--checkpoint-on-failure', help=argparse.SUPPRESS) # debug option making a debug-tarball and sending to specified address
52
+
# argument is alien-path
53
+
parser.add_argument('--action-logfile', help='Logfilename for action logs. If none given, pipeline_action_#PID.log will be used')
54
+
parser.add_argument('--metric-logfile', help='Logfilename for metric logs. If none given, pipeline_metric_#PID.log will be used')
parser.add_argument('-jmax','--maxjobs', help='Number of maximal parallel tasks.', default=100)
1053
-
parser.add_argument('--dry-run', action='store_true', help='Show what you would do.')
1054
-
parser.add_argument('--visualize-workflow', action='store_true', help='Saves a graph visualization of workflow.')
1055
-
parser.add_argument('--target-labels', nargs='+', help='Runs the pipeline by target labels (example "TPC" or "DIGI").\
1056
-
This condition is used as logical AND together with --target-tasks.', default=[])
1057
-
parser.add_argument('-tt','--target-tasks', nargs='+', help='Runs the pipeline by target tasks (example "tpcdigi"). By default everything in the graph is run. Regular expressions supported.', default=["*"])
1058
-
parser.add_argument('--produce-script', help='Produces a shell script that runs the workflow in serialized manner and quits.')
1059
-
parser.add_argument('--rerun-from', help='Reruns the workflow starting from given task (or pattern). All dependent jobs will be rerun.')
1060
-
parser.add_argument('--list-tasks', help='Simply list all tasks by name and quit.', action='store_true')
1061
-
1062
-
parser.add_argument('--mem-limit', help='Set memory limit as scheduling constraint', default=max_system_mem)
1063
-
parser.add_argument('--cpu-limit', help='Set CPU limit (core count)', default=8)
1064
-
parser.add_argument('--cgroup', help='Execute pipeline under a given cgroup (e.g., 8coregrid) emulating resource constraints. This m\
1065
-
ust exist and the tasks file must be writable to with the current user.')
1066
-
parser.add_argument('--stdout-on-failure', action='store_true', help='Print log files of failing tasks to stdout,')
1067
-
parser.add_argument('--webhook', help=argparse.SUPPRESS) # log some infos to this webhook channel
1068
-
parser.add_argument('--checkpoint-on-failure', help=argparse.SUPPRESS) # debug option making a debug-tarball and sending to specified address
0 commit comments