标签:pre lex mes 返回 远程 events cep 朋友 tar
gRPC 是谷歌开源的一个rpc(远程程序调用)框架,可以轻松实现跨语言,跨平台编程,其采用gRPC协议(基于HTTP2)。
在上家公司,因为之前的项目有一下几个痛点,所以决定采用rpc框架:
所以我们花了点时间处理这些问题,将订单,用户等模块拆开,方便独立部署,独立升级,独立维护,这样可以大大提高维护效率和项目的伸缩性。
syntax = "proto3";
package order;
message OrderRequest {// 定义请求数据
string phone = 1;
string price = 2;
map<string, string> request_arg = 3;//便于字段扩展
}
message JSONResponse{// 定义返回格式
string rst_string = 1; //统一返回json字符串作处理
}
service OrderHandler {
// format a list of events.
rpc create_order (OrderRequest) returns (JSONResponse) {}
}
// 其中:
// message: 定义数据结构<br>
// service: 定义接口的名字,参数,
python -m grpc_tools.protoc -I./ --python_out=./ --grpc_python_out=./ ./*.proto
运行后会生成两个文件(test_pb2.py, test_pb2_grpc.py)
import time
import test_pb2
import test_pb2_grpc
import grpc
def test(request):
# 实际调用到的函数
json_response = test_pb2.JSONResponse()
json_response.rst_string = json.dumps({"ret":"Hi gRPC"})# 构造出proto文件中定义的返回值格式
return json_response
class OrderHandler(test_pb2_grpc.OrderHandlerServicer):
‘‘‘
gRPC请求会进入这个类中进行分发,根据客户端请求的方法找到对应的处理方法
感兴趣的可以打断点查看request, context中的内容,他们包含了请求的所有信息
‘‘‘
def create_order(self, request, context):
return test(request, context)
def serve():
# 开启gRPC服务,监听特定端口,
server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
test_pb2_grpc.add_OrderHandlerServicer_to_server(
OrderHandler(), server)
server.add_insecure_port(‘[::]:{}‘.format(12006))
server.start()
try:
while True:
time.sleep(186400)
except KeyboardInterrupt:
server.stop(0)
serve()
import grpc
import test_pb2_grpc
import test_pb2
channel = grpc.insecure_channel("127.0.0.1:12006")
stub = test_pb2_grpc.OrderHandlerStub(channel)
# 要完成请求需要先构造出proto文件中定义的请求格式
ret = stub.create_order(test_pb2.OrderRequest(phone="12990", price="50"))
print(ret.rst_string)
标签:pre lex mes 返回 远程 events cep 朋友 tar
原文地址:https://www.cnblogs.com/yuzhenjie/p/9387677.html