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

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


The following commit(s) were added to refs/heads/master by this push:
     new ed0a8ef  Proofreading dev documents under /user_doc/guide/datasource 
(#720)
ed0a8ef is described below

commit ed0a8ef9325a96a293e6e1eee6c8f21850c67762
Author: Tq <[email protected]>
AuthorDate: Wed Mar 9 11:25:45 2022 +0800

    Proofreading dev documents under /user_doc/guide/datasource (#720)
---
 docs/en-us/dev/user_doc/guide/datasource/hive.md   | 28 +++++++++++-----------
 .../dev/user_doc/guide/datasource/introduction.md  |  8 +++----
 docs/en-us/dev/user_doc/guide/datasource/mysql.md  | 21 ++++++++--------
 .../dev/user_doc/guide/datasource/postgresql.md    | 20 ++++++++--------
 docs/en-us/dev/user_doc/guide/datasource/spark.md  | 18 +++++++-------
 docs/zh-cn/dev/user_doc/guide/datasource/mysql.md  |  8 +++----
 .../dev/user_doc/guide/datasource/postgresql.md    |  8 +++----
 7 files changed, 56 insertions(+), 55 deletions(-)

diff --git a/docs/en-us/dev/user_doc/guide/datasource/hive.md 
b/docs/en-us/dev/user_doc/guide/datasource/hive.md
index 25f2106..d009729 100644
--- a/docs/en-us/dev/user_doc/guide/datasource/hive.md
+++ b/docs/en-us/dev/user_doc/guide/datasource/hive.md
@@ -6,26 +6,26 @@
     <img src="/img/hive-en.png" width="80%" />
   </p>
 
-- Data source: select HIVE
-- Data source name: enter the name of the data source
-- Description: Enter a description of the data source
-- IP/Host Name: Enter the IP connected to HIVE
-- Port: Enter the port connected to HIVE
-- Username: Set the username for connecting to HIVE
-- Password: Set the password for connecting to HIVE
-- Database name: Enter the name of the database connected to HIVE
-- Jdbc connection parameters: parameter settings for HIVE connection, filled 
in in JSON form
-
-> NOTICE: If you wish execute multiple HIVE SQL in the same session, you could 
set `support.hive.oneSession = true` in
-> configure `common.properties`. It is helpful when you try to set env before 
running HIVE SQL. Parameter
-> `support.hive.oneSession` default value is `false` and SQL would run in 
different session if their more than one.
+- Datasource: select `HIVE`
+- Datasource name: enter the name of the DataSource
+- Description: enter a description of the DataSource
+- IP/Host Name: enter the HIVE service IP
+- Port: enter the HIVE service port
+- Username: set the username for HIVE connection
+- Password: set the password for HIVE connection
+- Database name: enter the database name of the HIVE connection
+- Jdbc connection parameters: parameter settings for HIVE connection, in JSON 
format
+
+> NOTICE: If you wish to execute multiple HIVE SQL in the same session, you 
could set `support.hive.oneSession = true` in `common.properties`. 
+> It is helpful when you try to set env variables before running HIVE SQL. 
Default value of `support.hive.oneSession` is `false` and multi-SQLs run in 
different sessions.
 
 ## Use HiveServer2 HA ZooKeeper
 
  <p align="center">
     <img src="/img/hive1-en.png" width="80%" />
   </p>
-Note: If Kerberos is not enabled, ensure that the parameter 
`hadoop.security.authentication.startup.state`. The state value is `false`, 
Parameter `java.security.krb5.conf.path` value is null or empty If **Kerberos** 
is enabled, it needs to be in common Properties configure the following 
parameters
+NOTICE: If Kerberos is disabled, ensure the parameter 
`hadoop.security.authentication.startup.state` is false, and parameter 
`java.security.krb5.conf.path` value sets null. 
+If **Kerberos** is enabled, needs to set the following parameters  in 
`common.properties`: 
 
 ```conf
 # whether to startup kerberos
diff --git a/docs/en-us/dev/user_doc/guide/datasource/introduction.md 
b/docs/en-us/dev/user_doc/guide/datasource/introduction.md
index fc387cb..5095cd6 100644
--- a/docs/en-us/dev/user_doc/guide/datasource/introduction.md
+++ b/docs/en-us/dev/user_doc/guide/datasource/introduction.md
@@ -1,6 +1,6 @@
-# Data Source
+# DataSource
 
-Data source center supports MySQL, POSTGRESQL, HIVE/IMPALA, SPARK, CLICKHOUSE, 
ORACLE, SQLSERVER and other data sources
+DataSource supports MySQL, PostgreSQL, Hive/Impala, Spark, ClickHouse, Oracle, 
SQL Server and other DataSources.
 
-- Click "Data Source Center -> Create Data Source" to create different types 
of data sources according to requirements.
-- Click "Test Connection" to test whether the data source can be successfully 
connected.
\ No newline at end of file
+- Click "Data Source Center -> Create Data Source" to create different types 
of DataSources according to requirements.
+- Click "Test Connection" to test whether the DataSource can connect 
successfully.
\ No newline at end of file
diff --git a/docs/en-us/dev/user_doc/guide/datasource/mysql.md 
b/docs/en-us/dev/user_doc/guide/datasource/mysql.md
index fdd84d0..daab565 100644
--- a/docs/en-us/dev/user_doc/guide/datasource/mysql.md
+++ b/docs/en-us/dev/user_doc/guide/datasource/mysql.md
@@ -1,15 +1,16 @@
 # MySQL
 
-- Data source: select MYSQL
-- Data source name: enter the name of the data source
-- Description: Enter a description of the data source
-- IP hostname: enter the IP to connect to MySQL
-- Port: Enter the port to connect to MySQL
-- Username: Set the username for connecting to MySQL
-- Password: Set the password for connecting to MySQL
-- Database name: Enter the name of the database connected to MySQL
-- Jdbc connection parameters: parameter settings for MySQL connection, filled 
in in JSON form
-
 <p align="center">
    <img src="/img/mysql-en.png" width="80%" />
  </p>
+
+- Datasource: select MYSQL
+- Datasource name: enter the name of the DataSource
+- Description: enter a description of the DataSource
+- IP/Host Name: enter the MYSQL service IP
+- Port: enter the MYSQL service port
+- Username: set the username for MYSQL connection
+- Password: set the password for MYSQL connection
+- Database name: enter the database name of the MYSQL connection
+- Jdbc connection parameters: parameter settings for MYSQL connection, in JSON 
format
+
diff --git a/docs/en-us/dev/user_doc/guide/datasource/postgresql.md 
b/docs/en-us/dev/user_doc/guide/datasource/postgresql.md
index 6b616f8..30f327b 100644
--- a/docs/en-us/dev/user_doc/guide/datasource/postgresql.md
+++ b/docs/en-us/dev/user_doc/guide/datasource/postgresql.md
@@ -1,15 +1,15 @@
 # PostgreSQL
 
-- Data source: select POSTGRESQL
-- Data source name: enter the name of the data source
-- Description: Enter a description of the data source
-- IP/Host Name: Enter the IP to connect to POSTGRESQL
-- Port: Enter the port to connect to POSTGRESQL
-- Username: Set the username for connecting to POSTGRESQL
-- Password: Set the password for connecting to POSTGRESQL
-- Database name: Enter the name of the database connected to POSTGRESQL
-- Jdbc connection parameters: parameter settings for POSTGRESQL connection, 
filled in in JSON form
-
 <p align="center">
    <img src="/img/postgresql-en.png" width="80%" />
  </p>
+
+- Datasource: select POSTGRESQL
+- Datasource name: enter the name of the DataSource
+- Description: enter a description of the DataSource
+- IP/Host Name: enter the PostgreSQL service IP
+- Port: enter the PostgreSQL service port
+- Username: set the username for PostgreSQL connection
+- Password: set the password for PostgreSQL connection
+- Database name: enter the database name of the PostgreSQL connection
+- Jdbc connection parameters: parameter settings for PostgreSQL connection, in 
JSON format
diff --git a/docs/en-us/dev/user_doc/guide/datasource/spark.md 
b/docs/en-us/dev/user_doc/guide/datasource/spark.md
index ebdff80..aeb113c 100644
--- a/docs/en-us/dev/user_doc/guide/datasource/spark.md
+++ b/docs/en-us/dev/user_doc/guide/datasource/spark.md
@@ -4,12 +4,12 @@
    <img src="/img/spark-en.png" width="80%" />
  </p>
 
-- Data source: select Spark
-- Data source name: enter the name of the data source
-- Description: Enter a description of the data source
-- IP/Hostname: Enter the IP connected to Spark
-- Port: Enter the port connected to Spark
-- Username: Set the username for connecting to Spark
-- Password: Set the password for connecting to Spark
-- Database name: Enter the name of the database connected to Spark
-- Jdbc connection parameters: parameter settings for Spark connection, filled 
in in JSON form
+- Datasource: select Spark
+- Datasource name: enter the name of the DataSource
+- Description: enter a description of the DataSource
+- IP/Host Name: enter the Spark service IP
+- Port: enter the Spark service port
+- Username: set the username for Spark connection
+- Password: set the password for Spark connection
+- Database name: enter the database name of the Spark connection
+- Jdbc connection parameters: parameter settings for Spark connection, in JSON 
format
diff --git a/docs/zh-cn/dev/user_doc/guide/datasource/mysql.md 
b/docs/zh-cn/dev/user_doc/guide/datasource/mysql.md
index 0b0affd..80264e6 100644
--- a/docs/zh-cn/dev/user_doc/guide/datasource/mysql.md
+++ b/docs/zh-cn/dev/user_doc/guide/datasource/mysql.md
@@ -1,5 +1,9 @@
 # MySQL数据源
 
+<p align="center">
+   <img src="/img/mysql_edit.png" width="80%" />
+</p>
+
 - 数据源:选择MYSQL
 - 数据源名称:输入数据源的名称
 - 描述:输入数据源的描述
@@ -9,7 +13,3 @@
 - 密码:设置连接MySQL的密码
 - 数据库名:输入连接MySQL的数据库名称
 - Jdbc连接参数:用于MySQL连接的参数设置,以JSON形式填写
-
-<p align="center">
-   <img src="/img/mysql_edit.png" width="80%" />
-</p>
\ No newline at end of file
diff --git a/docs/zh-cn/dev/user_doc/guide/datasource/postgresql.md 
b/docs/zh-cn/dev/user_doc/guide/datasource/postgresql.md
index ea9c94d..7f4ee95 100644
--- a/docs/zh-cn/dev/user_doc/guide/datasource/postgresql.md
+++ b/docs/zh-cn/dev/user_doc/guide/datasource/postgresql.md
@@ -1,5 +1,9 @@
 # POSTGRESQL数据源
 
+<p align="center">
+   <img src="/img/postgresql_edit.png" width="80%" />
+ </p>
+
 - 数据源:选择POSTGRESQL
 - 数据源名称:输入数据源的名称
 - 描述:输入数据源的描述
@@ -9,7 +13,3 @@
 - 密码:设置连接POSTGRESQL的密码
 - 数据库名:输入连接POSTGRESQL的数据库名称
 - Jdbc连接参数:用于POSTGRESQL连接的参数设置,以JSON形式填写
-
-<p align="center">
-   <img src="/img/postgresql_edit.png" width="80%" />
- </p>
\ No newline at end of file

Reply via email to