Python grpc超时机制代码示例
程序员文章站
2022-04-12 22:37:46
工作中遇到一个问题,上游服务通过grpc调用下游服务,但是由于下游服务负载太高导致上游服务的调用会随机出现超时的情况,但是有一点不太明确:超时之后,下游服务还会继续进行计算么?于是自己写了一个damo...
工作中遇到一个问题,上游服务通过grpc调用下游服务,但是由于下游服务负载太高导致上游服务的调用会随机出现超时的情况,但是有一点不太明确:超时之后,下游服务还会继续进行计算么?
于是自己写了一个damon试了一下:
client:
# copyright 2015 grpc authors. # # licensed under the apache license, version 2.0 (the "license"); # you may not use this file except in compliance with the license. # you may obtain a copy of the license at # # http://www.apache.org/licenses/license-2.0 # # unless required by applicable law or agreed to in writing, software # distributed under the license is distributed on an "as is" basis, # without warranties or conditions of any kind, either express or implied. # see the license for the specific language governing permissions and # limitations under the license. """the python implementation of the grpc helloworld.greeter client.""" from __future__ import print_function import logging import grpc import helloworld_pb2 import helloworld_pb2_grpc def run(): # note(grpc python team): .close() is possible on a channel and should be # used in circumstances in which the with statement does not fit the needs # of the code. with grpc.insecure_channel('localhost:50051') as channel: stub = helloworld_pb2_grpc.greeterstub(channel) response = stub.sayhello(helloworld_pb2.hellorequest(name='you'), timeout=30) print("greeter client received: " + response.message) if __name__ == '__main__': logging.basicconfig() run()
server:
# copyright 2015 grpc authors. # # licensed under the apache license, version 2.0 (the "license"); # you may not use this file except in compliance with the license. # you may obtain a copy of the license at # # http://www.apache.org/licenses/license-2.0 # # unless required by applicable law or agreed to in writing, software # distributed under the license is distributed on an "as is" basis, # without warranties or conditions of any kind, either express or implied. # see the license for the specific language governing permissions and # limitations under the license. """the python implementation of the grpc helloworld.greeter server.""" from concurrent import futures import time import logging import grpc import helloworld_pb2 import helloworld_pb2_grpc _one_day_in_seconds = 60 * 60 * 24 class greeter(helloworld_pb2_grpc.greeterservicer): def sayhello(self, request, context): count = 0 while count < 10: print('time:%s' % (time.time())) time.sleep(5) return helloworld_pb2.helloreply(message='hello, %s!' % request.name) def serve(): server = grpc.server(futures.threadpoolexecutor(max_workers=10)) helloworld_pb2_grpc.add_greeterservicer_to_server(greeter(), server) server.add_insecure_port('[::]:50051') server.start() try: while true: time.sleep(_one_day_in_seconds) except keyboardinterrupt: server.stop(0) if __name__ == '__main__': logging.basicconfig() serve()
这两个例子就是在grpc官方提供的python例子上做了一下小的改动,得到的结果是:当client超时报错退出之后,server还是会继续进行计算,直到结束,那如果是这样的话,超时的机制对于server来说是没有作用的,即使client已经不再等待这个结果了,但是server还是会继续计算,浪费server的资源。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。