需要上下文参数的python gRPC

use*_*551 7 python grpc

我刚刚开始使用 gRPC,并在阅读入门指南后尝试实现一个简单的 Python 服务。但是当我调用我的客户端调用时,python 要求提供上下文参数。为什么我的代码在示例中不需要时需要提供上下文对象?

PS 我开始尝试创建自己的具体上下文子类,但不确定应该如何实现。我已经添加了我的开始,但如果可能的话,我真的很感激一个例子

谢谢!

原型

syntax = "proto2";

package parsefile;

service ParseFile {
  rpc SendFile (File) returns (Empty) {}
}

message File {

  message MetaData {
    optional string file_name = 1;
    optional string file_path = 2 [default = '.'];
    optional string mime_type = 3 [default = 'application/pdf'];
  }

  message Source {
    optional string title = 1;
    optional int32 id = 2;
  }

  optional MetaData document = 1;
  optional Source supplier = 2;
}

message Empty {
}
Run Code Online (Sandbox Code Playgroud)

服务器

from concurrent import futures
import time

import grpc

import parsefile_pb2_grpc
import parsefile_pb2

_ONE_DAY_IN_SECONDS = 60 * 60 * 24

class ParseFileServicer(parsefile_pb2_grpc.ParseFileServicer):

    def SendFile(self, request, context):
        supplier = request.supplier.title
        file_name = request.document.file_name
        print('Received {} from {}'.format(file_name, supplier))
        return parsefile_pb2.Empty()

def serve():
    server = grpc.server(futures.ThreadPoolExecutor(max_workers=2))
    parsefile_pb2_grpc.add_ParseFileServicer_to_server(
        ParseFileServicer, 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__':
    serve()
Run Code Online (Sandbox Code Playgroud)

客户

import grpc

import parsefile_pb2_grpc
import parsefile_pb2

def get_file_info():
    return parsefile_pb2.File(
        document = parsefile_pb2.File.MetaData(
            file_name = 'example.txt'
        ),
        supplier = parsefile_pb2.File.Source(
            title = 'Example Supplier'
        )
    )

def run():
    channel = grpc.insecure_channel('localhost:50051')
    stub = parsefile_pb2_grpc.ParseFileStub(channel)
    context = RequestContext()
    print('object created')
    response = stub.SendFile(get_file_info())
    print('File info sent to server')

if __name__ == '__main__':
    run()
Run Code Online (Sandbox Code Playgroud)

错误跟踪

Traceback (most recent call last):   File "parse_client.py", line 60, in <module>
    run()   File "parse_client.py", line 56, in run
    response = stub.SendFile(get_file_info(), 2)   File "/Users/davidbowe/.virtualenvs/post/lib/python3.6/site-packages/grpc/_channel.py", line 507, in __call__
    return _end_unary_response_blocking(state, call, False, deadline)   File "/Users/davidbowe/.virtualenvs/post/lib/python3.6/site-packages/grpc/_channel.py", line 455, in _end_unary_response_bl ocking
    raise _Rendezvous(state, None, None, deadline) grpc._channel._Rendezvous: <_Rendezvous of RPC that terminated with (StatusCode.UNKNOWN, Exception calling application: SendF ile() missing 1 required positional argument: 'context')>
Run Code Online (Sandbox Code Playgroud)

小智 16

在您的服务器代码中,您缺少用于设置服务对象的括号。你写了...

parsefile_pb2_grpc.add_ParseFileServicer_to_server(ParseFileServicer, server)
Run Code Online (Sandbox Code Playgroud)

它应该是:

parsefile_pb2_grpc.add_ParseFileServicer_to_server(ParseFileServicer(), server)
Run Code Online (Sandbox Code Playgroud)

  • 我知道这个答案已经有一年了,但你让我省了不少麻烦!谢谢! (3认同)
  • 我知道这个答案已经有两年了,但你让我免于浪费更多时间(current_waste:3小时) (3认同)

osp*_*der 0

您不需要创建该context参数,它是由 grpc 自动创建的。