英文: How to expose 2 ports in cloudrun 问题 我有一个在容器中运行 REST 和 gRPC 服务器的服务。我希望能够同时暴露这两个端口,而不是分别运行带有 gRPC...
在单个proto文件中导入具有相同消息名称的多个protobuf文件。
英文: Import multiple protobuf files with common message names in a single proto file 问题 我有几个共享一些消息名称的...
Golang how to return list in gRPC
英文: Golang how to return list in gRPC 问题 我有两个结构体。一个是自己定义的,另一个是通过gRPC生成的。问题是,当尝试通过gRPC返回自己定义的结构体时,会生成...
如何解析协议缓冲区消息并创建 JSON 数据?
英文: How to parse protocol buffer message and create json out of it? 问题 这是我的最小.proto文件: syntax = "...
“通过 gRPC 发送过快时,出现了 ‘SendHeader called multiple times’ 错误。”
英文: "SendHeader called multiple times" error while sending too fast via gRPC 问题 我尝试使用双工gRP...
gRPC一元调用服务器连接状态检查
英文: gRPC Unary Call Connection State Check on Server 问题 我有一个一元的 gRPC 调用,在我的 Go gRPC 服务器上可能需要几分钟才能处理(...
如何禁用自动生成的 gRPC 客户端函数中的 `err != nil` 检查?
英文: How to disable `err != nil` check in autogenerated gRPC client functions 问题 我有一个接口的protobuf定义。我使...
如果服务器在gRPC客户端不可用时,可以采取以下等待方式:
英文: Ways to wait if server is not available in gRPC from client side 问题 我希望阅读这篇文章的人一切都好。 这里有一个场景让我感到...
使用Google PubSub与Cloud Run gRPC服务
英文: Using google PubSub with a Cloud Run gRPC service 问题 我有一个Cloud Run gRPC服务,我希望它监听PubSub主题。 从官方文档中...
gRPC客户端/存根在goroutine之间的使用
英文: Is a gRPC client/stub usage across goroutines 问题 我正在使用Protobuf和gRPC进行实验,并正在阅读Go基础教程:https://www....
27