From 646a80e6232aecc1c973fa771047afe40ad706ec Mon Sep 17 00:00:00 2001 From: Sukrit Kalra Date: Tue, 13 Feb 2024 12:11:00 -0800 Subject: [PATCH] [RPC] Add ID to register the Driver with the given ID. --- rpc/protos/erdos_scheduler.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/rpc/protos/erdos_scheduler.proto b/rpc/protos/erdos_scheduler.proto index 45f7efaa..60581dd5 100644 --- a/rpc/protos/erdos_scheduler.proto +++ b/rpc/protos/erdos_scheduler.proto @@ -65,6 +65,7 @@ message DeregisterFrameworkResponse { /// URI, the number of resources required by the driver, and other general /// information. message RegisterDriverRequest { + string id = 1; string uri = 2; int32 cores = 3; int32 memory = 4;