2019-08-22 10:46:57 +08:00
|
|
|
|
[中文](grpc-transcoding-cn.md)
|
|
|
|
|
# grpc-transcoding
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
|
|
|
|
HTTP(s) -> APISIX -> gRPC server
|
|
|
|
|
|
|
|
|
|
### Proto
|
|
|
|
|
|
|
|
|
|
#### Parameters
|
|
|
|
|
* `content`: `.proto` file's content.
|
|
|
|
|
|
|
|
|
|
#### Add a proto
|
|
|
|
|
|
|
|
|
|
Here's an example, adding a proto which `id` is `1`:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
curl http://127.0.0.1:9080/apisix/admin/proto/1 -X PUT -d '
|
|
|
|
|
{
|
2019-09-03 13:53:41 +08:00
|
|
|
|
"content" : "syntax = \"proto3\";
|
|
|
|
|
package helloworld;
|
|
|
|
|
service Greeter {
|
|
|
|
|
rpc SayHello (HelloRequest) returns (HelloReply) {}
|
|
|
|
|
}
|
|
|
|
|
message HelloRequest {
|
|
|
|
|
string name = 1;
|
|
|
|
|
}
|
|
|
|
|
message HelloReply {
|
|
|
|
|
string message = 1;
|
|
|
|
|
}"
|
2019-08-21 23:10:34 +08:00
|
|
|
|
}'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
* `proto_id`: `.proto` content id.
|
|
|
|
|
* `service`: the grpc service name.
|
|
|
|
|
* `method`: the method name of grpc service.
|
|
|
|
|
|
|
|
|
|
### example
|
|
|
|
|
|
|
|
|
|
#### enable plugin
|
|
|
|
|
|
2019-08-22 14:40:56 +08:00
|
|
|
|
Here's an example, to enable the grpc-transcode plugin to specified route:
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
|
|
|
|
* attention: the route's option `service_protocal` must be `grpc`
|
|
|
|
|
* the grpc server example:[grpc_server_example](https://github.com/nic-chen/grpc_server_example)
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
curl http://127.0.0.1:9080/apisix/admin/routes/111 -X PUT -d '
|
|
|
|
|
{
|
|
|
|
|
"methods": ["GET"],
|
|
|
|
|
"uri": "/grpctest",
|
|
|
|
|
"service_protocol": "grpc",
|
|
|
|
|
"plugins": {
|
2019-08-22 14:40:56 +08:00
|
|
|
|
"grpc-transcode": {
|
2019-08-21 23:10:34 +08:00
|
|
|
|
"proto_id": "1",
|
|
|
|
|
"service": "helloworld.Greeter",
|
|
|
|
|
"method": "SayHello"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"upstream": {
|
|
|
|
|
"type": "roundrobin",
|
|
|
|
|
"nodes": {
|
|
|
|
|
"127.0.0.1:50051": 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#### test plugin
|
|
|
|
|
|
|
|
|
|
The above configuration proxy :
|
|
|
|
|
```shell
|
2019-08-24 09:13:52 +08:00
|
|
|
|
curl -i http://127.0.0.1:9080/grpctest?name=world
|
2019-08-21 23:10:34 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
response:
|
|
|
|
|
```
|
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
|
Date: Fri, 16 Aug 2019 11:55:36 GMT
|
|
|
|
|
Content-Type: application/json
|
|
|
|
|
Transfer-Encoding: chunked
|
|
|
|
|
Connection: keep-alive
|
|
|
|
|
Server: APISIX web server
|
|
|
|
|
Proxy-Connection: keep-alive
|
|
|
|
|
|
|
|
|
|
{"message":"Hello world"}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This means that the proxying is working.
|
|
|
|
|
|