Adds support for Task Execution Parent Ids

resolves #261
This commit is contained in:
Glenn Renfro
2017-01-06 09:42:10 -05:00
committed by Michael Minella
parent 91aaf0022c
commit acaaad89f3
37 changed files with 336 additions and 64 deletions

View File

@@ -194,6 +194,19 @@ following property:
spring.cloud.task.external-execution-id=<externalTaskId>
```
[[features-parent_task_id]]
=== Parent Task Id
Spring Cloud Task allows a user to store an parent task Id for each
TaskExecution. An example of this would be a task that executes another task
or tasks and the user would like to store what task launched the child tasks.
In order to configure your Task to set a parent TaskExecutionId add the
following property on the child task:
```
spring.cloud.task.parent-execution-id=<parentExecutionTaskId>
```
[[features-task-configurer]]
=== TaskConfigurer