Dapr的 gRPC 接口

在应用程序中使用 Dapr gRPC API

Dapr 和 gRPC

Dapr 为本地调用实现 HTTP 和 gRPC API 。 gRPC is useful for low-latency, high performance scenarios and has language integration using the proto clients.

您可以在这里找到 自动生成的客户端 的列表。

Dapr 运行时实现 服务 ,应用程序可以通过 gRPC 进行通信。

除了通过 gRPC 调用 Dapr , Dapr 还可以通过 gRPC 与应用程序通信。 To do that, the app needs to host a gRPC server and implements the Dapr appcallback service

配置 dapr 以通过 gRPC 与应用程序通信

自托管

当在自己托管模式下运行时,使用 --app-protocol 标志告诉Dapr 使用 gRPC 来与应用程序对话:

  1. dapr run --app-protocol grpc --app-port 5005 node app.js

This tells Dapr to communicate with your app via gRPC over port 5005.

Kubernetes

On Kubernetes, set the following annotations in your deployment YAML:

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: myapp
  5. namespace: default
  6. labels:
  7. app: myapp
  8. spec:
  9. replicas: 1
  10. selector:
  11. matchLabels:
  12. app: myapp
  13. template:
  14. metadata:
  15. labels:
  16. app: myapp
  17. annotations:
  18. dapr.io/enabled: "true"
  19. dapr.io/app-id: "myapp"
  20. dapr.io/app-protocol: "grpc"
  21. dapr.io/app-port: "5005"
  22. ...

使用 gRPC 调用 dapr - 执行示例

下面的步骤显示了如何创建 Dapr 客户端并调用 保存状态数据 操作:

  1. 导入包
  1. package main
  2. import (
  3. "context"
  4. "log"
  5. "os"
  6. dapr "github.com/dapr/go-sdk/client"
  7. )
  1. 创建客户端
  1. // just for this demo
  2. ctx := context.Background()
  3. data := []byte("ping")
  4. // create the client
  5. client, err := dapr.NewClient()
  6. if err != nil {
  7. logger.Panic(err)
  8. }
  9. defer client.Close()
  1. 调用 “ 保存状态 “ 方法
  1. // save state with the key key1
  2. err = client.SaveStateData(ctx, "statestore", "key1", "1", data)
  3. if err != nil {
  4. logger.Panic(err)
  5. }
  6. logger.Println("data saved")

Hooray!

现在你可以探索Dapr客户端上的所有不同方法。

使用 Dapr 创建 gRPC 应用程序

以下步骤将向您显示如何创建一个让Dapr服务器与之通信的应用程序。

  1. 导入包
  1. package main
  2. import (
  3. "context"
  4. "fmt"
  5. "log"
  6. "net"
  7. "github.com/golang/protobuf/ptypes/any"
  8. "github.com/golang/protobuf/ptypes/empty"
  9. commonv1pb "github.com/dapr/go-sdk/dapr/proto/common/v1"
  10. pb "github.com/dapr/go-sdk/dapr/proto/runtime/v1"
  11. "google.golang.org/grpc"
  12. )
  1. 实现接口
  1. // server is our user app
  2. type server struct {
  3. }
  4. // EchoMethod is a simple demo method to invoke
  5. func (s *server) EchoMethod() string {
  6. return "pong"
  7. }
  8. // This method gets invoked when a remote service has called the app through Dapr
  9. // The payload carries a Method to identify the method, a set of metadata properties and an optional payload
  10. func (s *server) OnInvoke(ctx context.Context, in *commonv1pb.InvokeRequest) (*commonv1pb.InvokeResponse, error) {
  11. var response string
  12. switch in.Method {
  13. case "EchoMethod":
  14. response = s.EchoMethod()
  15. }
  16. return &commonv1pb.InvokeResponse{
  17. ContentType: "text/plain; charset=UTF-8",
  18. Data: &any.Any{Value: []byte(response)},
  19. }, nil
  20. }
  21. // Dapr will call this method to get the list of topics the app wants to subscribe to. In this example, we are telling Dapr
  22. // To subscribe to a topic named TopicA
  23. func (s *server) ListTopicSubscriptions(ctx context.Context, in *empty.Empty) (*pb.ListTopicSubscriptionsResponse, error) {
  24. return &pb.ListTopicSubscriptionsResponse{
  25. Subscriptions: []*pb.TopicSubscription{
  26. {Topic: "TopicA"},
  27. },
  28. }, nil
  29. }
  30. // Dapr will call this method to get the list of bindings the app will get invoked by. In this example, we are telling Dapr
  31. // To invoke our app with a binding named storage
  32. func (s *server) ListInputBindings(ctx context.Context, in *empty.Empty) (*pb.ListInputBindingsResponse, error) {
  33. return &pb.ListInputBindingsResponse{
  34. Bindings: []string{"storage"},
  35. }, nil
  36. }
  37. // This method gets invoked every time a new event is fired from a registerd binding. The message carries the binding name, a payload and optional metadata
  38. func (s *server) OnBindingEvent(ctx context.Context, in *pb.BindingEventRequest) (*pb.BindingEventResponse, error) {
  39. fmt.Println("Invoked from binding")
  40. return &pb.BindingEventResponse{}, nil
  41. }
  42. // This method is fired whenever a message has been published to a topic that has been subscribed. Dapr sends published messages in a CloudEvents 0.3 envelope.
  43. func (s *server) OnTopicEvent(ctx context.Context, in *pb.TopicEventRequest) (*empty.Empty, error) {
  44. fmt.Println("Topic message arrived")
  45. return &empty.Empty{}, nil
  46. }
  1. 创建服务器
  1. func main() {
  2. // create listener
  3. lis, err := net.Listen("tcp", ":50001")
  4. if err != nil {
  5. log.Fatalf("failed to listen: %v", err)
  6. }
  7. // create grpc server
  8. s := grpc.NewServer()
  9. pb.RegisterAppCallbackServer(s, &server{})
  10. fmt.Println("Client starting...")
  11. // and start...
  12. if err := s.Serve(lis); err != nil {
  13. log.Fatalf("failed to serve: %v", err)
  14. }
  15. }

这将在端口 4000 上为应用程序创建一个 gRPC 服务器。

  1. 运行你的应用

To run locally, use the Dapr CLI:

  1. dapr run --app-id goapp --app-port 4000 --app-protocol grpc go run main.go

在 Kubernetes 上,设置所需的 dapr.io/app-protocol: "grpc"dapr.io/app-port: " 4000 注释在您的 Pod 规范模板中如上所述。

Other languages

您可以将 Dapr 与 Protobuf 支持的任何语言一起使用,而不只是使用当前可用的生成 SDK。 使用 原型 工具,您可以为 Ruby, C++, Rust 等其他语言生成 Dapr 客户机。

相关主题

Last modified January 1, 0001