This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 8c9b05d6518 providerNamespace doc version description
https://github.com/apache/dubbo/pull/10686 (#1535)
8c9b05d6518 is described below
commit 8c9b05d6518aab6ae4e7320a7f5a3027a512a8c4
Author: JianNie <[email protected]>
AuthorDate: Fri Sep 30 15:20:38 2022 +0800
providerNamespace doc version description
https://github.com/apache/dubbo/pull/10686 (#1535)
Co-authored-by: niejian <[email protected]>
---
content/zh/docs3-v2/java-sdk/reference-manual/config/properties.md | 2 +-
content/zh/overview/tasks/mesh/dubbo-mesh.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/zh/docs3-v2/java-sdk/reference-manual/config/properties.md
b/content/zh/docs3-v2/java-sdk/reference-manual/config/properties.md
index d0607d9ab6c..e62142ad5c1 100644
--- a/content/zh/docs3-v2/java-sdk/reference-manual/config/properties.md
+++ b/content/zh/docs3-v2/java-sdk/reference-manual/config/properties.md
@@ -125,7 +125,7 @@ description: "包含 Dubbo 支持的所有配置组件及每个配置组件支
| unloadClusterRelated | unloadClusterRelated | boolean | 可选 | false | Service
Mesh | 当dubbo.consumer.meshEnable=true,在Service
Mesh模式下,设置为true,可在当前调用中卸载与Cluster相关的Directory、Router和Load
Balance,将重试、负载平衡、超时和其他流量管理功能下放至Sidecar,使用VirtualService和DestinationRule进行流量治理 |
3.1.0以上版本 |
| parameters | 无 | Map<string, string> | 可选 | | 服务治理 |
扩展预留,可扩展定义任意参数,所有扩展参数都将原样反映在 URL 配置上 | 2.0.0以上版本 |
| providedBy | provided-by | string | 可选 | | Service Mesh |
当dubbo.consumer.meshEnable=true,Dubbo默认会将请求转换成K8S标准格式,结合VirtualService和DestinationRule进行流量治理,此时consumer端可以感知到provider。该值应当与声明的`k8s
service`一致 | 3.1.0以上版本 |
-| providerNamespace | provider-namespace | string | 可选 | | Service Mesh |
当dubbo.consumer.meshEnable=true,Dubbo默认会将请求转换成K8S标准格式,结合VirtualService和DestinationRule进行流量治理,此时consumer端可以感知到provider。请设置providerNamespace,使consumer端按照此配置寻址provider
dns,默认`default` | 3.1.1以上版本 |
+| providerNamespace | provider-namespace | string | 可选 | | Service Mesh |
当dubbo.consumer.meshEnable=true,Dubbo默认会将请求转换成K8S标准格式,结合VirtualService和DestinationRule进行流量治理,此时consumer端可以感知到provider。请设置providerNamespace,使consumer端按照此配置寻址provider
dns,默认`default` | 3.1.2以上版本 |
### registry
diff --git a/content/zh/overview/tasks/mesh/dubbo-mesh.md
b/content/zh/overview/tasks/mesh/dubbo-mesh.md
index bb75bc9ad74..d3cf2b51053 100644
--- a/content/zh/overview/tasks/mesh/dubbo-mesh.md
+++ b/content/zh/overview/tasks/mesh/dubbo-mesh.md
@@ -280,7 +280,7 @@ kubectl label namespace ${your namespace}
istio-injection=enabled --overwrite
kubectl label namespace ${your namespace} istio-injection=disabled --overwrite
```
## 6 注意事项
-1.
示例中,生产者消费者都属于同一个namespace;如果需要调用不同的namespace的提供者,需要按如下配置(**dubbo版本>=3.1.1**):
+1.
示例中,生产者消费者都属于同一个namespace;如果需要调用不同的namespace的提供者,需要按如下配置(**dubbo版本>=3.1.2**):
注解方式:
```java