This is an automated email from the ASF dual-hosted git repository.
vinodkone pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 26630d0 Updated default executor semantics in the doc.
26630d0 is described below
commit 26630d02c6b40a5e631dc5dccb50c61c26f25145
Author: Vinod Kone <[email protected]>
AuthorDate: Thu Apr 11 13:16:20 2019 -0500
Updated default executor semantics in the doc.
Noted that scheduler killing a task will kill all tasks in a task group.
---
docs/app-framework-development-guide.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/app-framework-development-guide.md
b/docs/app-framework-development-guide.md
index e64cd92..8f30045 100644
--- a/docs/app-framework-development-guide.md
+++ b/docs/app-framework-development-guide.md
@@ -144,7 +144,7 @@ The current semantics of the default executor are as folows:
-- There is no resource isolation between different tasks or task groups
within an executor.
Tasks' resources are added to the executor container.
--- If any of the tasks exits with a non-zero exit code, all the tasks in the
task group
+-- If any of the tasks exits with a non-zero exit code or killed by the
scheduler, all the tasks in the task group
are killed automatically. The default executor commits suicide if there are
no active task groups.