From dd37ca25b0437500cfbf4d32d645b374c3a82422 Mon Sep 17 00:00:00 2001 From: luav Date: Thu, 21 Jun 2018 17:22:32 +0200 Subject: [PATCH] Task description updated --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0e02774..a208108 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,8 @@ Task(name, timeout=0, onstart=None, ondone=None, onfinish=None, params=None numadded: uint - the number of direct added subtasks numdone: uint - the number of completed DIRECT subtasks (each subtask may contain multiple jobs or sub-sub-tasks) - numterm: uint - the number of terminated direct subtasks (i.e. jobs) + numterm: uint - the number of terminated direct subtasks (including jobs) that are not restarting + numdone + numterm <= numadded """ ``` @@ -367,6 +368,7 @@ ExecPool(wksnum=max(cpu_count()-1, 1), afnmask=None, memlimit=0., latency=0., na failures: [JobInfo] - failed (terminated or crashed) jobs with timestamps. NOTE: failures contain both terminated, crashed jobs that jobs completed with non-zero return code excluding the jobs terminated by timeout that have set .rsrtonto (will be restarted) + jobsdone: uint - the number of successfully completed (non-terminated) jobs with zero code tasks: set(Task) - tasks associated with the scheduled jobs """