Skip to content

Commit 2e73f72

Browse files
Allen Wangtensorflower-gardener
Allen Wang
authored andcommitted
[TF Data Service] Use the gRPC local pool rather than the default global pool. In edge cases, this change should improve the networking throughput on TPUs. In regular cases, this change should be a no op.
PiperOrigin-RevId: 357022295 Change-Id: I356f365488a0bb96d076029597c27ca72d4902b7
1 parent bcf3fe2 commit 2e73f72

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tensorflow/core/data/service/data_service.cc

+1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ Status DataServiceDispatcherClient::EnsureInitialized() {
233233
CredentialsFactory::CreateClientCredentials(protocol_, &credentials));
234234
grpc::ChannelArguments args;
235235
args.SetMaxReceiveMessageSize(std::numeric_limits<int32>::max());
236+
args.SetInt(GRPC_ARG_USE_LOCAL_SUBCHANNEL_POOL, true);
236237
auto channel = grpc::CreateCustomChannel(address_, credentials, args);
237238
stub_ = DispatcherService::NewStub(channel);
238239
return Status::OK();

0 commit comments

Comments
 (0)