Visualize computation graph

This commit is contained in:
Philipp Moritz
2016-07-01 12:13:23 -07:00
parent ad35da08f3
commit 9ad2c033d4
7 changed files with 91 additions and 6 deletions
+5
View File
@@ -12,6 +12,10 @@ message Put {
uint64 objref = 1; // The objref for the object that was put
}
message Get {
uint64 objref = 1; // The objref for the object that is retrieved
}
// This is used internally by the scheduler. From the scheduler's perspective,
// the submission of tasks (via SubmitTask) and the submission of puts (via
// PutObj) look very similar, and so it is useful to be able to handle them
@@ -19,6 +23,7 @@ message Put {
message Operation {
Task task = 1;
Put put = 2;
Get get = 4;
uint64 creator_operationid = 3; // The id of the task that called this task or put.
}