okaybase commented on code in PR #7312: URL: https://github.com/apache/apisix/pull/7312#discussion_r906667564
########## docs/en/latest/plugins/dubbo-proxy.md: ########## @@ -23,40 +30,39 @@ title: dubbo-proxy ## Description -dubbo-proxy plugin allows you proxy HTTP request to [**dubbo**](http://dubbo.apache.org). +The `dubbo-proxy` Plugin allows you to proxy HTTP requests to [Apache Dubbo](https://dubbo.apache.org/en/index.html). + +:::info IMPORTANT -## Requirement +If you are using OpenResty, you need to build it with Dubbo support. See [How do I build the APISIX base environment](./../FAQ.md#how-do-i-build-the-apisix-base-environment) for details. -If you are using OpenResty, you need to build it with dubbo support, see [APISIX-Base](./FAQ/#how-do-i-build-the-apisix-base-environment). +::: ## Runtime Attributes -| Name | Type | Requirement | Default | Valid | Description | -| ------------ | ------ | ----------- | -------- | ------------ | -------------------------------------------------------------------- | -| service_name | string | required | | | dubbo provider service name| -| service_version | string | required | | | dubbo provider service version| -| method | string | optional | the path of uri | | dubbo provider service method| +| Name | Type | Required | Default | Description | +| --------------- | ------ | -------- | -------------------- | ------------------------------- | +| service_name | string | required | | Dubbo provider service name. | +| service_version | string | required | | Dubbo provider service version. | +| method | string | optional | The path of the URI. | Dubbo provider service method. | ## Static Attributes -| Name | Type | Requirement | Default | Valid | Description | -| ------------ | ------ | ----------- | -------- | ------------ | -------------------------------------------------------------------- | -| upstream_multiplex_count | number | required | 32 | >= 1 | the maximum number of multiplex requests in an upstream connection | +| Name | Type | Required | Default | Valid values | Description | +| ------------------------ | ------ | -------- | ------- | ------------ | --------------------------------------------------------------- | +| upstream_multiplex_count | number | required | 32 | >= 1 | Maximum number of multiplex requests in an upstream connection. | Review Comment: ```suggestion | upstream_multiplex_count | number | True | 32 | >= 1 | Maximum number of multiplex requests in an upstream connection. | ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
