You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/05/23 07:14:21 UTC

[incubator-inlong-website] branch master updated: [INLONG-371][Manager] Modify the message queue registration demo (#379)

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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 93dde29be [INLONG-371][Manager] Modify the message queue registration demo (#379)
93dde29be is described below

commit 93dde29be2be48188b7b123494cd2a261c4ceaa1
Author: Greedyu <de...@tencent.com>
AuthorDate: Mon May 23 15:14:15 2022 +0800

    [INLONG-371][Manager] Modify the message queue registration demo (#379)
---
 docs/modules/manager/quick_start.md                           | 11 ++++++-----
 .../current/modules/manager/quick_start.md                    | 11 ++++++-----
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/docs/modules/manager/quick_start.md b/docs/modules/manager/quick_start.md
index 14d71fe4c..4b69772d8 100644
--- a/docs/modules/manager/quick_start.md
+++ b/docs/modules/manager/quick_start.md
@@ -62,17 +62,18 @@ curl --header "Content-Type: application/json" --request POST http://localhost:8
         "name": "tube_cluster",
         "type": "TUBE",
         "mqSetName": "default_set_name",
-        "extParams": "{\"cluster_tube_manager\": \"127.0.0.1:8080\", \"tube_masterUrl\": \"127.0.0.1:8715\", \"cluster_tube_clusterId\": \"1\"}",
-        "inCharges": "admin"
+        "extParams": "{\"tube.manager.url\": \"127.0.0.1:8080\", \"tube.master.url\": \"127.0.0.1:8715\", \"tube.cluster.id\": \"1\"}",
+        "inCharges": "admin",
+        "creator": "admin"
 }'
 ```
 
 - `extParams`: the other info of your cluster. It is described in JSON format, for example:
 ```json
 {
-  "cluster_tube_manager": "http://127.0.0.1:8081",
-  "tube_masterUrl": "127.0.0.1:8715",
-  "cluster_tube_clusterId": "1"
+  "tube.manager.url": "http://127.0.0.1:8080",
+  "tube.master.url": "127.0.0.1:8715",
+  "tube.cluster.id": "1"
 }
 ```
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
index 568d8c1f8..822583613 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
@@ -61,17 +61,18 @@ curl --header "Content-Type: application/json" --request POST http://localhost:8
         "name": "tube_cluster",
         "type": "TUBE",
         "mqSetName": "default_set_name",
-        "extParams": "{\"cluster_tube_manager\": \"127.0.0.1:8080\", \"tube_masterUrl\": \"127.0.0.1:8715\", \"cluster_tube_clusterId\": \"1\"}",
-        "inCharges": "admin"
+        "extParams": "{\"tube.manager.url\": \"127.0.0.1:8080\", \"tube.master.url\": \"127.0.0.1:8715\", \"tube.cluster.id\": \"1\"}",
+        "inCharges": "admin",
+        "creator": "admin"
 }'
 ```
 
 - `extParams`: 集群配置信息,按照JSON格式设置,比如:
 ```json
 {
-  "cluster_tube_manager": "http://127.0.0.1:8081",
-  "tube_masterUrl": "127.0.0.1:8715",
-  "cluster_tube_clusterId": "1"
+  "tube.manager.url": "http://127.0.0.1:8080",
+  "tube.master.url": "127.0.0.1:8715",
+  "tube.cluster.id": "1"
 }
 ```