Configuring a gRPC Service

Note: this guide assumes familiarity with gRPC; for learning how to set up Kong with an upstream REST API, check out the Configuring a Service guide.

Starting with version 1.3, gRPC proxying is natively supported in Kong. In this section, you’ll learn how to configure Kong to manage your gRPC services. For the purpose of this guide, we’ll use grpcurl and grpcbin - they provide a gRPC client and gRPC services, respectively.

We will describe two setups: Single gRPC Service and Route and single gRPC Service with multiple Routes. In the former, a single catch-all Route is configured, which proxies all matching gRPC traffic to an upstream gRPC service; the latter demonstrates how to use a Route per gRPC method.

In Kong 1.3, gRPC support assumes gRPC over HTTP/2 framing. As such, make sure you have at least one HTTP/2 proxy listener (check out the Configuration Reference for how to). In this guide, we will assume Kong is listening for HTTP/2 proxy requests on port 9080.

Before you start

You have installed and started Kong Gateway, either through the Docker quickstart or a more comprehensive installation.

1. Single gRPC Service and Route

Issue the following request to create a gRPC Service (assuming your gRPC server is listening in localhost, port 15002):

  1. curl -XPOST localhost:8001/services \
  2. --data name=grpc \
  3. --data protocol=grpc \
  4. --data host=localhost \
  5. --data port=15002

Issue the following request to create a gRPC route:

  1. curl -XPOST localhost:8001/services/grpc/routes \
  2. --data protocols=grpc \
  3. --data name=catch-all \
  4. --data paths=/

Using the grpcurl command line client, issue the following gRPC request:

  1. grpcurl -v -d '{"greeting": "Kong 1.3!"}' \
  2. -plaintext localhost:9080 hello.HelloService.SayHello

The response should resemble the following:

  1. Resolved method descriptor:
  2. rpc SayHello ( .hello.HelloRequest ) returns ( .hello.HelloResponse );
  3. Request metadata to send:
  4. (empty)
  5. Response headers received:
  6. content-type: application/grpc
  7. date: Tue, 16 Jul 2019 21:37:36 GMT
  8. server: openresty/1.15.8.1
  9. via: kong/1.2.1
  10. x-kong-proxy-latency: 0
  11. x-kong-upstream-latency: 0
  12. Response contents:
  13. {
  14. "reply": "hello Kong 1.3!"
  15. }
  16. Response trailers received:
  17. (empty)
  18. Sent 1 request and received 1 response

Notice that Kong response headers, such as via and x-kong-proxy-latency, were inserted in the response.

2. Single gRPC Service with Multiple Routes

Building on top of the previous example, let’s create a few more routes, for individual gRPC methods.

The gRPC “HelloService” service being used in this example exposes a few different methods, as can be seen in its protobuf file. We will create individual routes for its “SayHello” and LotsOfReplies methods.

Create a Route for “SayHello”:

  1. curl -X POST localhost:8001/services/grpc/routes \
  2. --data protocols=grpc \
  3. --data paths=/hello.HelloService/SayHello \
  4. --data name=say-hello

Create a Route for “LotsOfReplies”:

  1. curl -X POST localhost:8001/services/grpc/routes \
  2. --data protocols=grpc \
  3. --data paths=/hello.HelloService/LotsOfReplies \
  4. --data name=lots-of-replies

With this setup, gRPC requests to the “SayHello” method will match the first Route, while requests to “LotsOfReplies” will be routed to the latter.

Issue a gRPC request to the “SayHello” method:

  1. grpcurl -v -d '{"greeting": "Kong 1.3!"}' \
  2. -H 'kong-debug: 1' -plaintext \
  3. localhost:9080 hello.HelloService.SayHello

(Notice we are sending a header kong-debug, which causes Kong to insert debugging information in response headers.)

The response should look like:

  1. Resolved method descriptor:
  2. rpc SayHello ( .hello.HelloRequest ) returns ( .hello.HelloResponse );
  3. Request metadata to send:
  4. kong-debug: 1
  5. Response headers received:
  6. content-type: application/grpc
  7. date: Tue, 16 Jul 2019 21:57:00 GMT
  8. kong-route-id: 390ef3d1-d092-4401-99ca-0b4e42453d97
  9. kong-service-id: d82736b7-a4fd-4530-b575-c68d94c3493a
  10. kong-service-name: s1
  11. server: openresty/1.15.8.1
  12. via: kong/1.2.1
  13. x-kong-proxy-latency: 0
  14. x-kong-upstream-latency: 0
  15. Response contents:
  16. {
  17. "reply": "hello Kong 1.3!"
  18. }
  19. Response trailers received:
  20. (empty)
  21. Sent 1 request and received 1 response

Notice the Route ID should refer to the first route we created.

Similarly, let’s issue a request to the “LotsOfReplies” gRPC method:

  1. grpcurl -v -d '{"greeting": "Kong 1.3!"}' \
  2. -H 'kong-debug: 1' -plaintext \
  3. localhost:9080 hello.HelloService.LotsOfReplies

The response should look like the following:

  1. Resolved method descriptor:
  2. rpc LotsOfReplies ( .hello.HelloRequest ) returns ( stream .hello.HelloResponse );
  3. Request metadata to send:
  4. kong-debug: 1
  5. Response headers received:
  6. content-type: application/grpc
  7. date: Tue, 30 Jul 2019 22:21:40 GMT
  8. kong-route-id: 133659bb-7e88-4ac5-b177-bc04b3974c87
  9. kong-service-id: 31a87674-f984-4f75-8abc-85da478e204f
  10. kong-service-name: grpc
  11. server: openresty/1.15.8.1
  12. via: kong/1.2.1
  13. x-kong-proxy-latency: 14
  14. x-kong-upstream-latency: 0
  15. Response contents:
  16. {
  17. "reply": "hello Kong 1.3!"
  18. }
  19. Response contents:
  20. {
  21. "reply": "hello Kong 1.3!"
  22. }
  23. Response contents:
  24. {
  25. "reply": "hello Kong 1.3!"
  26. }
  27. Response contents:
  28. {
  29. "reply": "hello Kong 1.3!"
  30. }
  31. Response contents:
  32. {
  33. "reply": "hello Kong 1.3!"
  34. }
  35. Response contents:
  36. {
  37. "reply": "hello Kong 1.3!"
  38. }
  39. Response contents:
  40. {
  41. "reply": "hello Kong 1.3!"
  42. }
  43. Response contents:
  44. {
  45. "reply": "hello Kong 1.3!"
  46. }
  47. Response contents:
  48. {
  49. "reply": "hello Kong 1.3!"
  50. }
  51. Response contents:
  52. {
  53. "reply": "hello Kong 1.3!"
  54. }
  55. Response trailers received:
  56. (empty)
  57. Sent 1 request and received 10 responses

Notice that the kong-route-id response header now carries a different value and refers to the second Route created in this page.

Note: Some gRPC clients (typically CLI clients) issue “gRPC Reflection Requests” as a means of determining what methods a server exports and how those methods are called. Said requests have a particular path; for example, /grpc.reflection.v1alpha.ServerReflection/ServerReflectionInfo is a valid reflection path. As with any proxy request, Kong needs to know how to route these; in the current example, they would be routed to the catch-all route (whose path is /, matching any path). If no route matches the gRPC reflection request, Kong will respond, as expected, with a 404 Not Found response.

3. Enabling Plugins

Kong 1.3 gRPC support is compatible with Logging and Observability plugins; for example, let’s try out the File Log plugin with gRPC.

Issue the following request to enable File Log on the “SayHello” route:

  1. curl -X POST localhost:8001/routes/say-hello/plugins \
  2. --data name=file-log \
  3. --data config.path=grpc-say-hello.log

Follow the output of the log as gRPC requests are made to “SayHello”:

  1. tail -f grpc-say-hello.log
  2. {"latencies":{"request":8,"kong":5,"proxy":3},"service":{"host":"localhost","created_at":1564527408,"connect_timeout":60000,"id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c","protocol":"grpc","name":"grpc","read_timeout":60000,"port":15002,"updated_at":1564527408,"write_timeout":60000,"retries":5},"request":{"querystring":{},"size":"46","uri":"\/hello.HelloService\/SayHello","url":"http:\/\/localhost:9080\/hello.HelloService\/SayHello","headers":{"host":"localhost:9080","content-type":"application\/grpc","kong-debug":"1","user-agent":"grpc-go\/1.20.0-dev","te":"trailers"},"method":"POST"},"client_ip":"127.0.0.1","tries":[{"balancer_latency":0,"port":15002,"balancer_start":1564527732522,"ip":"127.0.0.1"}],"response":{"headers":{"kong-route-id":"e49f2df9-3e8e-4bdb-8ce6-2c505eac4ab6","content-type":"application\/grpc","connection":"close","kong-service-name":"grpc","kong-service-id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c","kong-route-name":"say-hello","via":"kong\/1.2.1","x-kong-proxy-latency":"5","x-kong-upstream-latency":"3"},"status":200,"size":"298"},"route":{"id":"e49f2df9-3e8e-4bdb-8ce6-2c505eac4ab6","updated_at":1564527431,"protocols":["grpc"],"created_at":1564527431,"service":{"id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c"},"name":"say-hello","preserve_host":false,"regex_priority":0,"strip_path":false,"paths":["\/hello.HelloService\/SayHello"],"https_redirect_status_code":426},"started_at":1564527732516}
  3. {"latencies":{"request":3,"kong":1,"proxy":1},"service":{"host":"localhost","created_at":1564527408,"connect_timeout":60000,"id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c","protocol":"grpc","name":"grpc","read_timeout":60000,"port":15002,"updated_at":1564527408,"write_timeout":60000,"retries":5},"request":{"querystring":{},"size":"46","uri":"\/hello.HelloService\/SayHello","url":"http:\/\/localhost:9080\/hello.HelloService\/SayHello","headers":{"host":"localhost:9080","content-type":"application\/grpc","kong-debug":"1","user-agent":"grpc-go\/1.20.0-dev","te":"trailers"},"method":"POST"},"client_ip":"127.0.0.1","tries":[{"balancer_latency":0,"port":15002,"balancer_start":1564527733555,"ip":"127.0.0.1"}],"response":{"headers":{"kong-route-id":"e49f2df9-3e8e-4bdb-8ce6-2c505eac4ab6","content-type":"application\/grpc","connection":"close","kong-service-name":"grpc","kong-service-id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c","kong-route-name":"say-hello","via":"kong\/1.2.1","x-kong-proxy-latency":"1","x-kong-upstream-latency":"1"},"status":200,"size":"298"},"route":{"id":"e49f2df9-3e8e-4bdb-8ce6-2c505eac4ab6","updated_at":1564527431,"protocols":["grpc"],"created_at":1564527431,"service":{"id":"74a95d95-fbe4-4ddb-a448-b8faf07ece4c"},"name":"say-hello","preserve_host":false,"regex_priority":0,"strip_path":false,"paths":["\/hello.HelloService\/SayHello"],"https_redirect_status_code":426},"started_at":1564527733554}