我在原型文件中使用google.profobuf。*导入(由go写的GRPC服务器使用)。当使用相同的proto文件在NodeJS中实现GRPC客户端时 - 我遇到了问题。
详细说明:
GRPC服务器使用的原型文件(用go编写):
tech.proto
syntax = "proto3";
package api;
import "google/protobuf/duration.proto";
import "google/protobuf/empty.proto";
message Info {
string desc = 1;
google.protobuf.Duration ttl = 2;
}
service Tech {
rpc BasicInfo(google.protobuf.Empty) returns (Info) {}
}
当用NodeJs编写的GRPC客户端使用它时:
getTechInfo.js(前几行)
'use strict';
const PROTO_PATH = __dirname + '/../../api/tech.proto';
const grpc = require('grpc');
const apiProto = grpc.load(PROTO_PATH).api;
我收到以下错误:
/Users/././node_modules/protobufjs/dist/protobuf.js:4720
throw Error("failed to import '"+importFilename+"' in '"+filename+"': file not found");
^
Error: failed to import '/Users/././api/google/protobuf/duration.proto' in '/Users/././api/register.proto': file not found
at Builder.ProtoBuf.Builder.BuilderPrototype.import (/Users/././node_modules/protobufjs/dist/protobuf.js:4720:35)
at Object.ProtoBuf.loadJson (/Users/././node_modules/protobufjs/dist/protobuf.js:5225:26)
at Object.ProtoBuf.loadProto (/Users/././node_modules/protobufjs/dist/protobuf.js:5128:25)
at Object.ProtoBuf.loadProtoFile (/Users/././node_modules/protobufjs/dist/protobuf.js:5174:52)
at Object.load (/Users/././node_modules/grpc/index.js:135:26)
at Object.<anonymous> (/Users/././src/api/getTechInfo.js:5:23)
at Module._compile (module.js:643:30)
at Object.Module._extensions..js (module.js:654:10)
at Module.load (module.js:556:32)
at tryModuleLoad (module.js:499:12)
问题在于原型文件中的导入:
import "google/protobuf/duration.proto";
import "google/protobuf/empty.proto";
解决这些导入的推荐方法是什么?提前谢谢。
使用:
Node v8.9.4
"google-protobuf": "^3.5.0",
"grpc": "^1.10.1",
答案 0 :(得分:0)
这是gRPC库的一个已知问题,主要在this issue中记录。 def data_received(self, data):
data = str(data)
print("Received Data: ", data, flush=True)
API不支持轻松加载grpc.load
个文件。
最简单的解决方案是使用google/protobuf/*.proto
库,在加载原型文件时会自动包含@grpc/proto-loader
个文件。
另一种解决方案是使用google/protobuf/*.proto
预生成可与grpc-tools
库一起使用的文件。