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.

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/5adac787-92ec-4ce7-a3a3-e01fa1ed4e42n%40googlegroups.com.

Reply via email to