2019-10-31 09:27:28 +08:00
|
|
|
|
<!--
|
|
|
|
|
#
|
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
#
|
|
|
|
|
-->
|
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
[Chinese](grpc-transcoding-cn.md)
|
|
|
|
|
|
|
|
|
|
## Name
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
|
|
|
|
HTTP(s) -> APISIX -> gRPC server
|
|
|
|
|
|
|
|
|
|
### Proto
|
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
#### Attributes
|
2019-08-21 23:10:34 +08:00
|
|
|
|
* `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
|
|
|
|
}'
|
|
|
|
|
```
|
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
## Attributes
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
|Name |Requirement |Description|
|
|
|
|
|
|--------- |--------|-----------|
|
|
|
|
|
| proto_id |required|`.proto` content id.|
|
|
|
|
|
| service |required|the grpc service name.|
|
|
|
|
|
| method |required|the method name of grpc service.|
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
## How To Enable
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
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
|
|
|
|
|
2019-11-05 10:58:04 +08:00
|
|
|
|
* attention: the route's option `service_protocol` must be `grpc`
|
2019-11-14 11:57:16 +08:00
|
|
|
|
* the grpc server example:[grpc_server_example](https://github.com/iresty/grpc_server_example)
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
|
|
|
|
```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
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2019-11-24 21:15:39 +08:00
|
|
|
|
## Test Plugin
|
2019-08-21 23:10:34 +08:00
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|