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

您的位置:首頁技術(shù)文章
文章詳情頁

Python grpc超時機制代碼示例

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

工作中遇到一個問題,上游服務(wù)通過grpc調(diào)用下游服務(wù),但是由于下游服務(wù)負(fù)載太高導(dǎo)致上游服務(wù)的調(diào)用會隨機出現(xiàn)超時的情況,但是有一點不太明確:超時之后,下游服務(wù)還會繼續(xù)進(jìn)行計算么?

于是自己寫了一個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例子上做了一下小的改動,得到的結(jié)果是:當(dāng)client超時報錯退出之后,server還是會繼續(xù)進(jìn)行計算,直到結(jié)束,那如果是這樣的話,超時的機制對于server來說是沒有作用的,即使client已經(jīng)不再等待這個結(jié)果了,但是server還是會繼續(xù)計算,浪費server的資源。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 久久久久草 | 特级一级毛片视频免费观看 | 日韩 欧美 亚洲国产 | 91精品国产9l久久久久 | 99久久精品国产亚洲 | 色婷婷综合在线视频最新 | 国产乱偷国产偷高清 | 日本免费va毛片在线看大 | 九九免费精品视频在这里 | 久久综合网久久综合 | 欧美特级限制片高清 | 国产成人久久蜜一区二区 | 成年大片免费视频播放手机不卡 | sese久久| 在线视频精品免费 | 永久免费在线 | 快使劲弄我视频在线播放 | 99精品国产成人一区二区在线 | 第一福利在线视频 | 综合天天 | 日韩国产欧美在线观看一区二区 | 漂亮大学生一级毛片 | 亚洲麻豆精品 | 免费黄色毛片 | 国产高清晰在线播放 | 国产日韩欧美视频 | 国产福利兔女郎在线观看 | 久久久精品久久久久久久久久久 | 亚洲伊人影院 | 午夜影视水蜜桃网站 | 特黄日韩免费一区二区三区 | 嫩草视频在线观看免费 | 成人午夜啪啪免费网站 | 欧美一区二区亚洲 | 性欧美高清come | 欧美片欧美日韩国产综合片 | 亚洲国产一区在线 | 一级福利片 | 欧美亚洲一区二区三区在线 | 久久在线视频免费观看 | 免费看精品黄线在线观看 |