Hii I have created grpc channel with host and load balancer here.
1)created channel
self.channel = grpc.insecure_channel(
self.host, options=[("grpc.lb_policy_name", "round_robin")]
)
2)created stub
self.blocking_stub = policy_pb2_grpc.ServiceStub(self.channel)
and I have used this stub along with metadata and timeout with request
to call the service
My question here is how can I add executor with custom threads from
client side ?
I have seen java code to use custom executor but how can we do in python ?
Thanks.