You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by zi...@apache.org on 2023/01/11 06:28:50 UTC

[inlong-website] branch master updated: [INLONG-665][Sort] Update clickhouse about usage (#671)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new acdfaabc50 [INLONG-665][Sort] Update clickhouse about usage (#671)
acdfaabc50 is described below

commit acdfaabc505f144f46b3217e3836bf05af9b5496
Author: Xin Gong <ge...@gmail.com>
AuthorDate: Wed Jan 11 14:28:44 2023 +0800

    [INLONG-665][Sort] Update clickhouse about usage (#671)
---
 docs/data_node/load_node/clickhouse.md                                | 4 ++--
 .../version-1.4.0/data_node/load_node/clickhouse.md                   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/data_node/load_node/clickhouse.md b/docs/data_node/load_node/clickhouse.md
index dd63a0c75f..a78b0282d4 100644
--- a/docs/data_node/load_node/clickhouse.md
+++ b/docs/data_node/load_node/clickhouse.md
@@ -64,7 +64,7 @@ CREATE TABLE `clickhouse_load_table`(
   'url' = 'jdbc:clickhouse://localhost:8123/demo',
   'username' = 'inlong',
   'password' = 'inlong',
-  'table-name' = 'user'
+  'table-name' = 'demo.user'
 )
 
 -- write data into ClickHouse
@@ -90,7 +90,7 @@ TODO: It will be supported in the future.
 | connector | required | (none) | String | Specify what connector to use, here should be 'jdbc-inlong'. |
 | url | required | (none) | String | The JDBC database url. |
 | dialect-impl | required | (none) |  String | `org.apache.inlong.sort.jdbc.dialect.ClickHouseDialect` |
-| table-name | required | (none) | String | The name of JDBC table to connect. |
+| table-name | required | (none) | String | The name of JDBC table to connect, for example `database.tableName`  |
 | driver | optional | (none) | String | The class name of the JDBC driver to use to connect to this URL, if not set, it will automatically be derived from the URL. |
 | username | optional | (none) | String | The JDBC user name. 'username' and 'password' must both be specified if any of them is specified. |
 | password | optional | (none) | String | The JDBC password. |
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.4.0/data_node/load_node/clickhouse.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.4.0/data_node/load_node/clickhouse.md
index 67cdf8d11e..68090b4d64 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.4.0/data_node/load_node/clickhouse.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.4.0/data_node/load_node/clickhouse.md
@@ -62,7 +62,7 @@ CREATE TABLE `clickhouse_load_table`(
   'url' = 'jdbc:clickhouse://localhost:8123/demo',
   'username' = 'inlong',
   'password' = 'inlong',
-  'table-name' = 'user'
+  'table-name' = 'demo.user'
 )
 
 -- 写数据到 ClickHouse
@@ -88,7 +88,7 @@ TODO: 将在未来支持此功能。
 | connector | 必选 | (none) | String | 指定使用什么类型的连接器,这里应该是 'jdbc-inlong'。 |
 | url | 必选 | (none) | String | JDBC 数据库 url。 |
 | dialect-impl | 必选 | (none) |  String | `org.apache.inlong.sort.jdbc.dialect.ClickHouseDialect` |
-| table-name | 必选 | (none) | String | 连接到 JDBC 表的名称。 |
+| table-name | 必选 | (none) | String | 连接到 JDBC 表的名称。例子:database.tableName |
 | driver | 可选 | (none) | String | 用于连接到此 URL 的 JDBC 驱动类名,如果不设置,将自动从 URL 中推导。 |
 | username | 可选 | (none) | String | JDBC 用户名。如果指定了 'username' 和 'password' 中的任一参数,则两者必须都被指定。 |
 | password | 可选 | (none) | String | JDBC 密码。 |