我对使用python在grpc中创建多个客户端感到困惑。我还需要在服务器端跟踪单个客户端(请求被流式传输的形式)。 请帮帮我。
我为本地主机服务器创建了一个客户端,例如:
channel = grpc.secure_channel('localhost:50051',credentials)
intercept_channel = grpc.intercept_channel(channel)
stub = logservice_pb2_grpc.log_serviceStub(intercept_channel)
response = log.stub.my_Service(...)
如何创建多个调用同一服务器(本地主机)的客户端? 如果多个客户端调用同一台服务器,我该如何识别服务器上的单个客户端?