gRPC服务接入

此篇文章是介绍 gRPC 服务接入到 Apache ShenYu 网关,Apache ShenYu 网关使用 grpc 插件来接入gRPC服务。

接入前,请正确启动 shenyu-admin,并开启grpc插件,在网关端和grpc服务端引入相关依赖。可以参考前面的 gRPC快速开始

应用客户端接入的相关配置请参考:客户端接入配置

数据同步的相关配置请参考:数据同步配置

在网关中引入 grpc 插件

引入网关对gRPC的代理插件,在网关的 pom.xml 文件中增加如下依赖:

  1. <!-- apache shenyu grpc plugin start-->
  2. <dependency>
  3. <groupId>org.apache.shenyu</groupId>
  4. <artifactId>shenyu-spring-boot-starter-plugin-grpc</artifactId>
  5. <version>${project.version}</version>
  6. </dependency>
  7. <!-- apache shenyu grpc plugin end-->
  • 重启你的网关服务。

gRPC服务接入网关

可以参考: shenyu-examples-grpc

  • 在由gRPC构建的微服务中,引入如下依赖:
  1. <dependency>
  2. <groupId>org.apache.shenyu</groupId>
  3. <artifactId>shenyu-spring-boot-starter-client-grpc</artifactId>
  4. <version>${shenyu.version}</version>
  5. <exclusions>
  6. <exclusion>
  7. <artifactId>guava</artifactId>
  8. <groupId>com.google.guava</groupId>
  9. </exclusion>
  10. </exclusions>
  11. </dependency>

shenyu-examples-grpc 下执行以下命令生成 java 代码。

  1. mvn protobuf:compile //编译消息对象
  2. mvn protobuf:compile-custom //依赖消息对象,生成接口服务

gRPC服务接口实现类上加上 @ShenyuGrpcClient 注解。启动你的服务提供者,成功注册后,在后台管理系统进入插件列表 -> rpc proxy -> grpc,会看到自动注册的选择器和规则信息。

示例:

  1. @Override
  2. @ShenyuGrpcClient(path = "/echo", desc = "echo")
  3. public void echo(EchoRequest request, StreamObserver<EchoResponse> responseObserver) {
  4. System.out.println("Received: " + request.getMessage());
  5. EchoResponse.Builder response = EchoResponse.newBuilder()
  6. .setMessage("ReceivedHELLO")
  7. .addTraces(Trace.newBuilder().setHost(getHostname()).build());
  8. responseObserver.onNext(response.build());
  9. responseObserver.onCompleted();
  10. }

用户请求

可以通过 http 的方式来请求你的grpc服务。Apache ShenYu网关需要有一个路由前缀,这个路由前缀就是你接入项目进行配置 contextPath

如果你的proto文件定义如下:

  1. message EchoRequest {
  2. string message = 1;
  3. }

那么请求参数如下所示:

  1. {
  2. "data": [
  3. {
  4. "message": "hello grpc"
  5. }
  6. ]
  7. }

当前是以 json 的格式传递参数,key的名称默认是data,你可以在 GrpcConstants.JSON_DESCRIPTOR_PROTO_FIELD_NAME 中进行重置;value的传入则根据你定义的 proto 文件。

Apache ShenYu 可以支持 gRPC 的流式调用,通过数组的形式传递多个参数。

如果你的proto文件定义如下:

  1. message RequestData {
  2. string text = 1;
  3. }

对应的方法调用请求参数如下:

  • UNARY
  1. {
  2. "data": [
  3. {
  4. "text": "hello grpc"
  5. }
  6. ]
  7. }
  • CLIENT_STREAMING
  1. {
  2. "data": [
  3. {
  4. "text": "hello grpc"
  5. },
  6. {
  7. "text": "hello grpc"
  8. },
  9. {
  10. "text": "hello grpc"
  11. }
  12. ]
  13. }
  • SERVER_STREAMING
  1. {
  2. "data": [
  3. {
  4. "text": "hello grpc"
  5. }
  6. ]
  7. }
  • BIDI_STREAMING
  1. {
  2. "data": [
  3. {
  4. "text": "hello grpc"
  5. },
  6. {
  7. "text": "hello grpc"
  8. },
  9. {
  10. "text": "hello grpc"
  11. }
  12. ]
  13. }