dubbo-proxy
简介
如果你正在使用 OpenResty
, 你需要编译它来支持 dubbo
, 参考 如何编译。
在 APISIX
中为了实现使从 http
代理到 dubbo
,我们在Tengine
的 mod_dubbo
基础上对 dubbo
模块做了改进。 所有的修改已经提交给 Tengine
,但是还未合并到最新的 release
版本中(Tengine-2.3.2) 。所以目前 Tengine
自身是不支持此特性的。
运行时属性
名称 | 类型 | 必选项 | 默认值 | 有效值 | 描述 |
---|---|---|---|---|---|
upstream_multiplex_count | number | 必选 | 32 | >= 1 | 上游连接中最大的多路复用请求数 |
如何启用
首先,在 config.yaml
中启用 dubbo-proxy
插件:
然后重载 APISIX
。
{
"127.0.0.1:20880": 1
},
"type": "roundrobin"
}'
curl http://127.0.0.1:9080/apisix/admin/routes/1 -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1' -X PUT -d '
{
"uris": [
"/hello"
],
"plugins": {
"dubbo-proxy": {
"service_name": "org.apache.dubbo.sample.tengine.DemoService",
"method": "tengineDubbo"
}
},
"upstream_id": 1
你可以在 Tengine
提供的 例子中使用上述配置进行测试。
将会有同样的结果。
从上游 dubbo
服务返回的数据一定是Map<String, String>
类型。
则对应的 HTTP
响应如下
HTTP/1.1 200 OK # "status" will be the status code
...
header1: value1
header2: value2
...
blahblah # "body" will be the body
禁用插件
当你想在某个路由或服务中禁用 dubbo-proxy
插件,非常简单,你可以直接删除插件配置中的 json
配置,不需要重启服务就能立即生效:
现在 dubbo-proxy
插件就已经被禁用了。 此方法同样适用于其他插件。
plugins:
- ... # plugin you need
然后重新加载 APISIX
。