You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by mi...@apache.org on 2018/11/13 07:07:22 UTC

[incubator-dubbo-ops.wiki] branch master updated: Created dubbo 2.7 (markdown)

This is an automated email from the ASF dual-hosted git repository.

min pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-ops.wiki.git


The following commit(s) were added to refs/heads/master by this push:
     new f33a247  Created dubbo 2.7 (markdown)
f33a247 is described below

commit f33a2476a7e00efd3286768cc664e030ab5d7dd0
Author: min <z8...@gmail.com>
AuthorDate: Tue Nov 13 15:07:21 2018 +0800

    Created dubbo 2.7 (markdown)
---
 dubbo-2.7.md | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/dubbo-2.7.md b/dubbo-2.7.md
new file mode 100644
index 0000000..eb793e6
--- /dev/null
+++ b/dubbo-2.7.md
@@ -0,0 +1,43 @@
+## Dubbo Ops支持2.7版本功能  
+
+### 数据源对接
+* 支持ConfigCenter配置
+* 注册中心,配置中心,元数据中心分开
+* 兼容老版本的用法
+
+### 元数据
+* 服务提供者: IP, PORT, Timeout, Serialization
+* 服务消费者: IP, PORT, Application Name
+* 从元数据中心获取服务的元数据信息,展示在服务详情中(服务名,方法名,方法名,方法参数,方法返回值)
+* 多protocol暴露服务时,在服务详情中展示
+
+
+### 动态配置规则
+* 支持应用维度的动态规则配置
+* 一个应用只能有一条应用维度的动态配置
+* 一个服务只能有一条服务维度的动态配置
+* 动态配置包含不同的参数,有些参数单独作为功能点拆出,每个维度只能有一条相同功能点的规则
+
+
+### 路由规则
+* 支持应用维度的路由规则配置
+* 一个应用只有一条应用维度的路由规则
+* 一个服务只有一条服务维度的路由规则
+* 标签路由  
+   * 支持给服务端打上特定的标签,客户端调用的时候,指定标签,服务端会在标签范围内进行路由,具体的配置规则如下   
+
+
+
+   ```yaml
+   scope: '?' 
+   force: false
+   runtime: true
+   enabled: true
+   priority: 1
+   key: governance-tagrouter-provider
+   tags:
+     - name: tag1
+       addresses: ["instance ip:20881"] 
+     - name: tag2
+       addresses: ["instance ip:20880"] 
+   ```
\ No newline at end of file