aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf/worker_service.proto
diff options
context:
space:
mode:
authorGravatar Brennan Saeta <saeta@google.com>2017-03-25 11:17:23 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-25 12:33:30 -0700
commit396b6bd1af7bd5a9295b13f30c5ed34e7de42daa (patch)
tree0d27b7da7f8ec1386526b7c594ea00bd041b93b0 /tensorflow/core/protobuf/worker_service.proto
parent0612f369876d2991008de418e78011b71040a807 (diff)
Consolidate worker state behind a session-centric abstraction.
State in workers is currently splayed across graph_mgr, rendezvous_mgr, and additional components. This has resulted in it being difficult to ensure proper cleanup and shut down of the worker components. In addition to paving the way for a more reliable shut down, this CL also sets up the beginnings of ClusterSpec propagation. ClusterSpec propagation is a capability upgrade for TensorFlow that should make it much easier to (1) build distributed TensorFlow clusters, and (2) handle node failures. After the ClusterSpec propagation capability is fully implemented, the TensorFlow workers can be booted independently of each other, and with no knowledge about others. A client can then query a central cluster scheduler or other API to find all of the workers, and then send the ClusterDef (ClusterSpec) to the TF master, which then propagates that along to all of the workers. This change is only the first of a sequence to fully implement ClusterSpec propagation in TensorFlow. Change: 151229111
Diffstat (limited to 'tensorflow/core/protobuf/worker_service.proto')
-rw-r--r--tensorflow/core/protobuf/worker_service.proto4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/core/protobuf/worker_service.proto b/tensorflow/core/protobuf/worker_service.proto
index 689752cf3e..3de9e48b78 100644
--- a/tensorflow/core/protobuf/worker_service.proto
+++ b/tensorflow/core/protobuf/worker_service.proto
@@ -40,6 +40,10 @@ service WorkerService {
rpc GetStatus(GetStatusRequest) returns (GetStatusResponse);
// See worker.proto for details.
+ rpc CreateWorkerSession(CreateWorkerSessionRequest)
+ returns (CreateWorkerSessionResponse);
+
+ // See worker.proto for details.
rpc RegisterGraph(RegisterGraphRequest) returns (RegisterGraphResponse);
// See worker.proto for details.