We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
parent_task_id
1 parent 6329eaa commit ec774feCopy full SHA for ec774fe
src/ray/protobuf/common.proto
@@ -460,7 +460,10 @@ message TaskSpec {
460
bytes job_id = 5;
461
// Task ID of the task.
462
bytes task_id = 6;
463
- // Task ID of the parent task.
+ // Task ID of the parent task. If the parent is a normal task, it will be the task's ID.
464
+ // If the parent runs in a concurrent actor (async actor or threaded actor),
465
+ // it will be the actor's creation task ID.
466
+ // See https://github.com/ray-project/ray/pull/32157 for more context.
467
bytes parent_task_id = 7;
468
// A count of the number of tasks submitted by the parent task before this one.
469
uint64 parent_counter = 8;
0 commit comments