亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Python grpc超時機制代碼示例

瀏覽:2日期:2022-07-11 11:34:45

工作中遇到一個問題,上游服務通過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_functionimport loggingimport grpcimport helloworld_pb2import helloworld_pb2_grpcdef 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 futuresimport timeimport loggingimport grpcimport helloworld_pb2import helloworld_pb2_grpc_ONE_DAY_IN_SECONDS = 60 * 60 * 24class 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的資源。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 日韩一区二区视频 | h网站国产| 99久久国产免费 - 99久久国产免费 | 国产精品国产三级国产在线观看 | 毛片一级 | 国产成人精品午夜 | 国产精品成人69xxx免费视频 | 国产在线每日更新 | blz在线成人免费视频 | 亚久久伊人精品青青草原2020 | 麻豆日韩区久久综合 | 免费一级毛片在线播放放视频 | 免费人成黄页网站在线观看国产 | 免费视频一区二区 | 亚洲精品中文字幕午夜 | 玛雅视频网站在线观看免费 | 欧美一级毛片一级毛片 | 正在播放宾馆露脸对白视频 | 高清国产美女一级a毛片在线 | 久久婷婷色综合老司机 | 久久熟 | 国产成人午夜福在线观看 | 欧美一区永久视频免费观看 | 欧美一做特黄毛片 | 亚洲成人在线视频观看 | 一级黄色片大全 | 九九色播| 久久亚洲精品一区成人 | 国产一区美女视频 | 亚洲在线看片 | 亚洲色图欧美视频 | 99r精品视频| 一级做a爱片特黄在线观看yy | 久久久日韩精品国产成人 | 久久r精品| 久久9精品| 欧美黑人乱大交灬太大了视频 | 一级特黄特色的免费大片视频 | 国产日产欧产精品精品软件 | 特黄视频 | 午夜成人在线视频 |