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

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


The following commit(s) were added to refs/heads/master by this push:
     new d2c749c13b2 mod get starting
d2c749c13b2 is described below

commit d2c749c13b26e5d10bb8ac142f9a8161005ff4e5
Author: jiafeng.zhang <zhang...@gmail.com>
AuthorDate: Thu Jul 28 18:29:12 2022 +0800

    mod get starting
---
 docs/get-starting/get-starting.md                  |  40 +++---
 .../ADMIN-DIAGNOSE-TABLET.md                       |   2 +-
 .../current/get-starting/get-starting.md           | 150 +++++++++++----------
 .../ADMIN-DIAGNOSE-TABLET.md                       |   2 +-
 4 files changed, 105 insertions(+), 89 deletions(-)

diff --git a/docs/get-starting/get-starting.md 
b/docs/get-starting/get-starting.md
index d7c209faea6..1cdcfa300c7 100644
--- a/docs/get-starting/get-starting.md
+++ b/docs/get-starting/get-starting.md
@@ -40,6 +40,9 @@ under the License.
 
 **Before creating, please prepare the compiled FE/BE file, this tutorial will 
not repeat the compilation process.**
 
+
+**This tutorial is a mixed distribution tutorial of single node, 1FE and 1BE, 
only one node is needed, which is convenient for quickly experiencing Doris.**
+
 1. Set the maximum number of open file handles in the system
 
    ```shell
@@ -53,9 +56,10 @@ under the License.
 2. Download binary package / self-compile FE / BE files
 
    ```shell
-   wget https://dist.apache.org/repos/dist/release/incubator/doris/version to 
deploy
+   # Select the version you want to deploy from the following address
+   https://archive.apache.org/dist/doris
    # For example the following link
-   wget 
https://dist.apache.org/repos/dist/release/incubator/doris/1.0/1.0.0-incubating/apache-doris-1.0.0-incubating-bin.tar.gz
+   wget 
https://archive.apache.org/dist/doris/1.1/1.1.0-rc05/apache-doris-1.1.0-bin-x86-jdk8.tar.gz
    ```
    
 3. Extract the tar.gz file
@@ -63,7 +67,7 @@ under the License.
    ```shell
    tar -zxvf Downloaded binary archive
    # example
-   tar -zxvf apache-doris-1.0.0-incubating-bin.tar.gz
+   tar -zxvf apache-doris-1.1.0-bin-x86-jdk8.tar.gz
    ```
 
 4. Migrate the decompressed program files to the specified directory and 
rename them
@@ -72,7 +76,7 @@ under the License.
    mv [unzipped root directory] [Target path]
    cd [Target path]
    # example
-   mv apache-doris-1.0.0-incubating-bin /opt/doris
+   mv apache-doris-1.1.0-bin-x86-jdk8 /opt/doris
    cd /opt/doris
    ```
 
@@ -82,7 +86,9 @@ under the License.
    # Configure FE-Config
    vi fe/conf/fe.conf
    # Uncomment priority_networks and modify parameters
-   priority_networks = 127.0.0.0/24
+   # For example, if the IP address of the current node is 10.10.2.21, you 
need to change it to 10.10.2.0/24 and fill in
+   # What needs to be filled in here is the IP subnet address, not the IP 
address
+   priority_networks = 10.10.2.0/24
    # save and exit
    ```
 
@@ -92,7 +98,9 @@ under the License.
    # Configure BE-Config
    vi be/conf/be.conf
    # Uncomment priority_networks and modify parameters
-   priority_networks = 127.0.0.0/24
+   # For example, if the IP address of the current node is 10.10.2.21, you 
need to change it to 10.10.2.0/24 and fill in
+   # What needs to be filled in here is the IP subnet address, not the IP 
address
+   priority_networks = 10.10.2.0/24
    # save and exit
    ```
 
@@ -117,7 +125,7 @@ under the License.
    Check whether the FE startup is successful
 
    > 1. Check whether the startup is successful, and whether there is a PaloFe 
process under the JPS command
-   > 2. After the FE process is started, the metadata will be loaded first. 
Depending on the role of the FE, you will see transfer from UNKNOWN to 
MASTER/FOLLOWER/OBSERVER in the log. Finally, you will see the thrift server 
started log, and you can connect to FE through the mysql client, which means FE 
started successfully.
+   > 2. After the FE process is started, the metadata will be loaded first. 
Depending on the role of the FE, you will see transfer from UNKNOWN to 
MASTER/FOLLOWER/OBSERVER in the log. Finally, you will see the thrift server 
started log, and you can connect to FE through the MySQL client, which means FE 
started successfully.
    > 3. You can also check whether the startup is successful through the 
following connection: http://fe_host:fe_http_port/api/bootstrap If it returns: 
{"status":"OK","msg":"Success"}, it means the startup is successful, and the 
rest , there may be a problem.
    > 4. Visit http://fe_host:fe_http_port in the external environment to check 
whether you can access the WebUI interface. The default login account is root 
and the password is empty.
    >
@@ -137,15 +145,15 @@ under the License.
    Register BE to FE (using MySQL-Client, you need to install it yourself)
 
    ```shell
-   # login
-   mysql -h 127.0.0.1 -P 9030 -uroot
+   # login,Since it is a single node mixed distribution, FE_IP and BE_IP are 
the same IP address
+   mysql -h FE_IP -P 9030 -uroot
    # Register BE
-   ALTER SYSTEM ADD BACKEND "127.0.0.1:9050";
+   ALTER SYSTEM ADD BACKEND "BE_IP:9050";
    ```
 
 ## Apache Doris is easy to use
 
-Doris uses the MySQL protocol for communication, and users can connect to the 
Doris cluster through MySQL Client or MySQL JDBC. When choosing the MySQL 
client version, it is recommended to use a version after 5.1, because the user 
name longer than 16 characters cannot be supported before 5.1. Doris SQL syntax 
basically covers MySQL syntax.
+Doris uses the MySQL protocol for communication, and users can connect to the 
Doris cluster through MySQL Client or MySQL JDBC. When choosing the MySQL 
Client version, it is recommended to use a version after 5.1, because the user 
name longer than 16 characters cannot be supported before 5.1. Doris SQL syntax 
basically covers MySQL syntax.
 
 ### Apache Doris Web UI access
 
@@ -186,7 +194,7 @@ Default password: empty
 
     What needs to be paid attention to is the `Alive` column, the `True` and 
`False` of this column represent the normal and abnormal status of the 
corresponding BE node
 
-3. profile query
+3. Profile query
 
     Enter QueryProfile to view the latest 100 SQL execution report 
information, click the specified ID in the QueryID column to view the Profile 
information
 
@@ -222,7 +230,7 @@ For a complete parameter comparison table, please go to 
[Profile parameter analy
 - View database list
 
   ```mysql
-  show databases;
+  SHOW DATABASES;
   ````
 
 - create database
@@ -395,7 +403,7 @@ For a complete parameter comparison table, please go to 
[Profile parameter analy
 
    The Insert Into statement is used in a similar way to the Insert Into 
statement in databases such as MySQL. But in Doris, all data writing is a 
separate import job. Therefore, Insert Into is also introduced as an import 
method here.
 
-   The main Insert Into commands include the following two;
+   The main Insert Into commands include the following two:
 
    - INSERT INTO tbl SELECT ...
    - INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...);
@@ -619,7 +627,7 @@ The current UPDATE statement **only supports** row updates 
on the Unique model,
 
 2. Example
 
-   The `test` table is a unique model table, which contains four columns: k1, 
k2, v1, v2. Where k1, k2 are keys, v1, v2 are values, and the aggregation 
method is Replace.
+   The `test` table is a unique model table, which contains four columns k1, 
k2, v1, v2. Where k1, k2 are keys, v1, v2 are values, and the aggregation 
method is Replace.
 
    1. Update the v1 column in the 'test' table that satisfies the conditions 
k1 =1 , k2 =2 to 1
 
@@ -652,7 +660,7 @@ The current UPDATE statement **only supports** row updates 
on the Unique model,
 
    illustrate:
 
-    - Optional types of op include: =, >, <, >=, <=, !=, in, not in
+    - Optional types of op include: =, >, <, >=, <=, !=, in, not in.
 
     - Only conditions on the key column can be specified.
 
diff --git 
a/docs/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
 
b/docs/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
index c684e429670..4ddd25a2460 100644
--- 
a/docs/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
+++ 
b/docs/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
@@ -1,6 +1,6 @@
 ---
 {
-    "title": "ADMIN DIAGNOSE TABLET",
+    "title": "ADMIN-DIAGNOSE-TABLET",
     "language": "en"
 }
 ---
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/get-starting.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/get-starting.md
index e7ff203d6ad..332248a2a9b 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/get-starting.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/get-starting.md
@@ -32,13 +32,16 @@ under the License.
 1. CPU:2C(最低)8C(推荐)
 2. 内存:4G(最低)48G(推荐)
 3. 硬盘:100G(最低)400G(推荐)
-4. 平台:MacOS(Intel)、LinuxOS、Windows虚拟机
+4. 平台:MacOS(Intel)、LinuxOS、Windows 虚拟机
 5. 系统:CentOS(7.1及以上)、Ubuntu(16.04 及以上)
 6. 软件:JDK(1.8及以上)、GCC(4.8.2 及以上)
 
 ## 单机部署
 
-**在创建之前,请准备好已完成编译的FE/BE文件,此教程不再赘述编译过程。**
+**在创建之前,请准备好已完成编译的 FE/BE 文件,此教程不再赘述编译过程。**
+
+
+**该教程为单节点、1 FE 和 1 BE 的混合部署教程,只需要一个节点,便于快速体验 Doris。**
 
 1. 设置系统最大打开文件句柄数
 
@@ -53,9 +56,10 @@ under the License.
 2. 下载二进制包/自主编译 FE / BE 文件
 
    ```shell
-   wget https://dist.apache.org/repos/dist/release/doris/要部署的版本
+   # 从以下地址选择想要部署的版本
+   https://archive.apache.org/dist/doris
    # 例如如下链接
-   wget 
https://dist.apache.org/repos/dist/release/doris/1.0/1.0.0-incubating/apache-doris-1.0.0-incubating-bin.tar.gz
+   wget 
https://archive.apache.org/dist/doris/1.1/1.1.0-rc05/apache-doris-1.1.0-bin-x86-jdk8.tar.gz
    ```
    
 3. 解压缩 tar.gz 文件
@@ -63,7 +67,7 @@ under the License.
    ```shell
    tar -zxvf 下载好的二进制压缩包
    # 例如
-   tar -zxvf apache-doris-1.0.0-incubating-bin.tar.gz
+   tar -zxvf apache-doris-1.1.0-bin-x86-jdk8.tar.gz
    ```
 
 4. 迁移解压缩后的程序文件至指定目录并重命名
@@ -72,27 +76,31 @@ under the License.
    mv 解压后的根目录 目标路径
    cd 目标路径
    # 例如
-   mv apache-doris-1.0.0-incubating-bin /opt/doris
+   mv apache-doris-1.1.0-bin-x86-jdk8 /opt/doris
    cd /opt/doris
    ```
 
 5. 配置 FE
 
    ```shell
-   # 配置FE-Config
+   # 配置 FE-Config
    vi fe/conf/fe.conf
-   # 取消priority_networks的注释,修改参数
-   priority_networks = 127.0.0.0/24
+   # 取消 priority_networks 的注释,修改参数
+   # 例如当前节点的 IP 地址为 10.10.2.21,则需要更改为 10.10.2.0/24 填入
+   # 这里需要填入的是 IP 子网网段地址,并非 IP 地址
+   priority_networks = 10.10.2.0/24
    # 保存退出
    ```
 
 6. 配置 BE
 
    ```shell
-   # 配置FE-Config
+   # 配置 BE-Config
    vi be/conf/be.conf
-   # 取消priority_networks的注释,修改参数
-   priority_networks = 127.0.0.0/24
+   # 取消 priority_networks 的注释,修改参数
+   # 例如当前节点的 IP 地址为 10.10.2.21,则需要更改为 10.10.2.0/24 填入
+   # 这里需要填入的是 IP 子网网段地址,并非 IP 地址
+   priority_networks = 10.10.2.0/24
    # 保存退出
    ```
 
@@ -114,20 +122,20 @@ under the License.
    start_be.sh --daemon
    ```
 
-   校验FE启动是否成功
+   校验 FE 启动是否成功
 
-   > 1. 检查是否启动成功, JPS 命令下有没有 PaloFe 进程 
-   > 2. FE 进程启动后,会⾸先加载元数据,根据 FE ⻆⾊的不同,在⽇志中会看到 transfer from UNKNOWN to 
MASTER/FOLLOWER/OBSERVER 。最终会看到 thrift server started ⽇志,并且可以通过 mysql 客户端连接到 
FE,则 表示 FE 启动成功。
-   > 3. 也可以通过如下连接查看是否启动成功: http://fe_host:fe_http_port/api/bootstrap 如果返回: 
{"status":"OK","msg":"Success"} 则表示启动成功,其余情况,则可能存在问题。
-   > 4. 外⽹环境访问 http://fe_host:fe_http_port 查看是否可以访问WebUI界 ⾯,登录账号默认为root,密码为空
+   > 1. 检查是否启动成功,JPS 命令下有没有 PaloFe 进程 
+   > 2. FE 进程启动后,会⾸先加载元数据,根据 FE ⻆⾊的不同,在⽇志中会看到 transfer from UNKNOWN to 
MASTER/FOLLOWER/OBSERVER 。最终会看到 thrift server started ⽇志,并且可以通过 MySQL 客户端连接到 
FE,则表示 FE 启动成功。
+   > 3. 也可以通过如下连接查看是否启动成功:http://fe_host:fe_http_port/api/bootstrap 如果返回: 
{"status":"OK","msg":"Success"} 则表示启动成功,其余情况,则可能存在问题。
+   > 4. 外⽹环境访问 http://fe_host:fe_http_port 查看是否可以访问 WebUI 界⾯,登录账号默认为 root,密码为空
    >
    > **注:如果在 fe.log 中查看不到启动失败的信息,也许在 fe.out 中可以看到。**
 
    校验 BE 启动是否成功
 
-   > 1. BE 进程启动后,如果之前有数据,则可能有数分钟不等的数据索引加载时 间。 
-   > 2. 如果是 BE 的第⼀次启动,或者该 BE 尚未加⼊任何集群,则 BE ⽇志会定期滚 动 waiting to receive first 
heartbeat from frontend 字样。表示 BE 还未通过 FE 的⼼跳收到 Master 的地址,正在被动等待。这种错误⽇志, 在 FE 中 
ADD BACKEND 并发送⼼跳后,就会消失。如果在接到⼼跳后,⼜重 复出现 master client, get client from cache 
failed.host: , port: 0, code: 7 字样,说明 FE 成功连接了 BE,但 BE ⽆法主动连接 FE。可能需要检查 BE 到 FE 
的 rpc_port 的连通性。 
-   > 3. 如果 BE 已经被加⼊集群,⽇志中应该每隔 5 秒滚动来⾃ FE 的⼼跳⽇ 志: get heartbeat, host: 
xx.xx.xx.xx, port: 9020, cluster id: xxxxxx ,表示⼼跳正常。 
+   > 1. BE 进程启动后,如果之前有数据,则可能有数分钟不等的数据索引加载时间。 
+   > 2. 如果是 BE 的第⼀次启动,或者该 BE 尚未加⼊任何集群,则 BE ⽇志会定期滚动 waiting to receive first 
heartbeat from frontend 字样。表示 BE 还未通过 FE 的⼼跳收到 Master 的地址,正在被动等待。这种错误⽇志,在 FE 中 
ADD BACKEND 并发送⼼跳后,就会消失。如果在接到⼼跳后,⼜重复出现 master client, get client from cache 
failed.host: , port: 0, code: 7 字样,说明 FE 成功连接了 BE,但 BE ⽆法主动连接 FE。可能需要检查 BE 到 FE 
的 rpc_port 的连通性。
+   > 3. 如果 BE 已经被加⼊集群,⽇志中应该每隔 5 秒滚动来⾃ FE 的⼼跳⽇志:get heartbeat, host: 
xx.xx.xx.xx, port: 9020, cluster id: xxxxxx,表示⼼跳正常。 
    > 4. 其次,⽇志中应该每隔 10 秒滚动 finish report task success. return code: 0 的字样,表示 BE 
向 FE 的通信正常。 
    > 5. 同时,如果有数据查询,应该能看到不停滚动的⽇志,并且有 execute time is xxx ⽇志,表示 BE 启动成功,并且查询正常。 
    > 6. 也可以通过如下连接查看是否启动成功: http://be_host:be_http_port/api/health 如果返回: 
{"status": "OK","msg": "To Be Added"} 则表示启动成功,其余情况,则可能存在问题。 
@@ -137,17 +145,17 @@ under the License.
    注册 BE 至 FE(使用MySQL-Client,需自行安装)
 
    ```shell
-   # 登录
-   mysql -h 127.0.0.1 -P 9030 -uroot
-   # 注册BE
-   ALTER SYSTEM ADD BACKEND "127.0.0.1:9050";
+   # 登录,由于是单节点混布,所以 FE_IP 和 BE_IP 为同一个 IP 地址
+   mysql -h FE_IP -P 9030 -uroot
+   # 注册 BE
+   ALTER SYSTEM ADD BACKEND "BE_IP:9050";
    ```
 
-## Apache Doris简单使用
+## Apache Doris 简单使用
 
-Doris 采用 MySQL 协议进行通信,用户可通过 MySQL Client 或者 MySQL JDBC 连接到 Doris 集群。选择 MySQL 
client 版本时建议采用5.1 之后的版本,因为 5.1 之前不能支持长度超过 16 个字符的用户名。Doris SQL 语法基本覆盖 MySQL 语法。
+Doris 采用 MySQL 协议进行通信,用户可通过 MySQL Client 或者 MySQL JDBC 连接到 Doris 集群。选择 MySQL 
Client 版本时建议采用 5.1 之后的版本,因为 5.1 之前不能支持长度超过 16 个字符的用户名。Doris SQL 语法基本覆盖 MySQL 语法。
 
-### Apache Doris Web UI访问
+### Apache Doris Web UI 访问
 
 默认使用 Http 协议进行 WebUI 访问,在浏览器输入以下格式地址访问
 
@@ -162,7 +170,7 @@ http://FE_IP:FE_HTTP_PORT(默认8030)
 默认密码:空
 ```
 
-1. WebUI简介
+1. WebUI 简介
 
    在 FE-WEB-UI 首页,罗列了 Version 和 Hardware Info
 
@@ -180,17 +188,17 @@ http://FE_IP:FE_HTTP_PORT(默认8030)
 
    - Configuration(配置参数)
 
-2. 查看BE列表
+2. 查看 BE 列表
 
    进入 `System` ——> `backends` 即可查看
 
-   需要关注的是 `Alive`列,该列的 `True `和 `False` 代表对应的BE节点的正常和异常状态
+   需要关注的是 `Alive` 列,该列的 `True ` 和  `False` 代表对应的 BE 节点的正常和异常状态
 
-3. profile查询
+3. Profile 查询
 
-   进入 QueryProfile 可以查看到最近的100条 SQL 执行 Report 信息,点击 QueryID 列的指定 ID 可以查看 
Profile 信息
+   进入 QueryProfile 可以查看到最近的 100 条 SQL 执行 Report 信息,点击 QueryID 列的指定 ID 可以查看 
Profile 信息
 
-### MySQL命令行/图形化客户端访问
+### MySQL 命令行/图形化客户端访问
 
 ```shell
 # 命令行
@@ -202,9 +210,9 @@ mysql -h FE-host -P 9030 -u用户名 -p密码
 密码:密码
 ```
 
-#### Profile设置
+#### Profile 设置
 
-FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在执行 Fragment 时记录了**运行状态时的统计值**,并将 
Fragment 执行的统计信息输出到日志之中。 FE 也可以通过开关将各个 Fragment 记录的这些统计值进行搜集,并在 FE 的Web页面上打印结果。
+FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在执行 Fragment 时记录了**运行状态时的统计值**,并将 
Fragment 执行的统计信息输出到日志之中。 FE 也可以通过开关将各个 Fragment 记录的这些统计值进行搜集,并在 FE 的 Web 
页面上打印结果。
 
 - 打开 FE 的 Report 开关
 
@@ -221,7 +229,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 - 查看数据库列表
 
   ```mysql
-  show databases;
+  SHOW DATABASES;
   ```
 
 - 创建数据库
@@ -253,19 +261,19 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
   > 关于 Create-Table 使用的更多详细语法及最佳实践,请参阅 
[Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md)
 命令手册。
 
-  使用 `CREATE TABLE` 命令建立一个表(Table)。更多详细参数可以查看:
+  使用 `CREATE TABLE` 命令建立一个表(Table)。更多详细参数可以查看:
 
   ```mysql
   HELP CREATE TABLE;
   ```
 
-  首先切换数据库:
+  首先切换数据库:
 
   ```mysql
   USE example_db;
   ```
 
-  Doris 支持支持单分区和复合分区两种建表方式(详细区别请参阅 
[Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md)
 命令手册) 。
+  Doris 支持支持单分区和复合分区两种建表方式(详细区别请参阅 
[Create-Table](../sql-manual/sql-reference/Data-Definition-Statements/Create/CREATE-TABLE.md)
 命令手册)。
 
   下面以聚合模型为例,演示两种分区的建表语句。
 
@@ -275,12 +283,12 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
     这个表的 schema 如下:
 
-    - siteid:类型是INT(4字节), 默认值为10
-    - citycode:类型是 SMALLINT(2字节)
-    - username:类型是 VARCHAR, 最大长度为32, 默认值为空字符串
-    - pv:类型是 BIGINT(8字节), 默认值是0; 这是一个指标列, Doris 内部会对指标列做聚合操作, 这个列的聚合方法是求和(SUM)
+    - siteid:类型是 INT(4 字节),默认值为 10
+    - citycode:类型是 SMALLINT(2 字节)
+    - username:类型是 VARCHAR,最大长度为 32,默认值为空字符串
+    - pv:类型是 BIGINT(8 字节),默认值是 0;这是一个指标列,Doris 内部会对指标列做聚合操作,这个列的聚合方法是求和(SUM)
 
-    建表语句如下:
+    建表语句如下:
 
     ```mysql
     CREATE TABLE table1
@@ -302,12 +310,12 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
     这个表的 schema 如下:
 
     - event_day:类型是DATE,无默认值
-    - siteid:类型是 INT(4字节), 默认值为10
-    - citycode:类型是 SMALLINT(2字节)
-    - username:类型是 VARCHAR, 最大长度为32, 默认值为空字符串
-    - pv:类型是BIGINT(8字节), 默认值是0; 这是一个指标列, Doris 内部会对指标列做聚合操作, 这个列的聚合方法是求和(SUM)
+    - siteid:类型是 INT(4 字节),默认值为 10
+    - citycode:类型是 SMALLINT(2 字节)
+    - username:类型是 VARCHAR,最大长度为 32,默认值为空字符串
+    - pv:类型是BIGINT(8 字节),默认值是 0;这是一个指标列,Doris 内部会对指标列做聚合操作,这个列的聚合方法是求和(SUM)
 
-    我们使用 event_day 列作为分区列,建立3个分区: p201706, p201707, p201708
+    我们使用 event_day 列作为分区列,建立3个分区:p201706、p201707、p201708
 
     - p201706:范围为 [最小值, 2017-07-01)
 
@@ -317,9 +325,9 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
       > 注意区间为左闭右开。
 
-    每个分区使用 siteid 进行哈希分桶,桶数为10
+    每个分区使用 siteid 进行哈希分桶,桶数为 10
 
-    建表语句如下:
+    建表语句如下:
 
     ```mysql
     CREATE TABLE table2
@@ -341,7 +349,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
     PROPERTIES("replication_num" = "1");
     ```
 
-    表建完之后,可以查看 example_db 中表的信息:
+    表建完之后,可以查看 example_db 中表的信息:
 
     ```mysql
     MySQL> SHOW TABLES;
@@ -379,12 +387,12 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
     > 注意事项:
     >
-    > 1. 上述表通过设置 replication_num 建的都是单副本的表,Doris建议用户采用默认的 3 副本设置,以保证高可用。
+    > 1. 上述表通过设置 replication_num 建的都是单副本的表,Doris 建议用户采用默认的 3 副本设置,以保证高可用。
     > 2. 可以对复合分区表动态的增删分区。详见 `HELP ALTER TABLE` 中 Partition 相关部分。
     > 3. 数据导入可以导入指定的 Partition。详见 `HELP LOAD`。
     > 4. 可以动态修改表的 Schema。
     > 5. 可以对 Table 增加上卷表(Rollup)以提高查询性能,这部分可以参见高级使用指南关于 Rollup 的描述。
-    > 6. 表的列的Null属性默认为true,会对查询性能有一定的影响。
+    > 6. 表的列的 Null 属性默认为 true,会对查询性能有一定的影响。
 
 #### 插入数据
 
@@ -394,7 +402,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
    Insert Into 语句的使用方式和 MySQL 等数据库中 Insert Into 语句的使用方式类似。但在 Doris 
中,所有的数据写入都是一个独立的导入作业。所以这里将 Insert Into 也作为一种导入方式介绍。
 
-   主要的 Insert Into 命令包含以下两种;
+   主要的 Insert Into 命令包含以下两种:
 
    - INSERT INTO tbl SELECT ...
    - INSERT INTO tbl (col1, col2, ...) VALUES (1, 2, ...), (1,3, ...);
@@ -418,7 +426,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
    **注意**
 
-   当需要使用 `CTE(Common Table Expressions)` 作为 insert 操作中的查询部分时,必须指定 `WITH LABEL` 
和 `column list` 部分。示例
+   当需要使用 `CTE(Common Table Expressions)` 作为 Insert 操作中的查询部分时,必须指定 `WITH LABEL` 
和 `column list` 部分。示例
 
    ```mysql
    INSERT INTO tbl1 WITH LABEL label1
@@ -433,9 +441,9 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
    Insert Into 本身就是一个 SQL 命令,其返回结果会根据执行结果的不同,分为以下几种:
 
    - 如果返回结果为 `ERROR 1064 (HY000)`,则表示导入失败。
-   - 如果返回结果为`Query OK`,则表示执行成功。
+   - 如果返回结果为 `Query OK`,则表示执行成功。
       - 如果 `rows affected` 为 0,表示结果集为空,没有数据被导入。
-      - 如果`rows affected`大于 0:
+      - 如果 `rows affected` 大于 0:
          - 如果 `status` 为 `committed`,表示数据还不可见。需要通过 `show transaction` 语句查看状态直到 
`visible`
          - 如果 `status` 为 `visible`,表示数据导入成功。
       - 如果 `warnings` 大于 0,表示有数据被过滤,可以通过 `show load` 语句获取 url 查看被过滤的行。
@@ -444,7 +452,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
 2. 批量导入
 
-   Doris 支持多种数据导入方式。具体可以参阅数据导入文档。这里我们使用流式导入 (Stream-Load) 和 Broker-Load 导入做示例。
+   Doris 支持多种数据导入方式。具体可以参阅数据导入文档。这里我们使用流式导入(Stream-Load)和 Broker-Load 导入做示例。
 
    - Stream-Load
 
@@ -471,7 +479,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
      5,3,helen,3
      ```
 
-     示例2: 以 "table2_20170707" 为 Label,使用本地文件 table2_data 导入 table2 表。
+     示例2:以 "table2_20170707" 为 Label,使用本地文件 table2_data 导入 table2 表。
 
      ```CQL
      curl --location-trusted -u test:test -H "label:table2_20170707" -H 
"column_separator:|" -T table2_data 
http://127.0.0.1:8030/api/example_db/table2/_stream_load
@@ -490,7 +498,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
      > 注意事项:
      >
      > 1. 采用流式导入建议文件大小限制在 10GB 以内,过大的文件会导致失败重试代价变大。
-     > 2. 每一批导入数据都需要取一个 Label,Label 最好是一个和一批数据有关的字符串,方便阅读和管理。Doris 基于 Label 
保证在一个Database 内,同一批数据只可导入成功一次。失败任务的 Label 可以重用。
+     > 2. 每一批导入数据都需要取一个 Label,Label 最好是一个和一批数据有关的字符串,方便阅读和管理。Doris 基于 Label 
保证在一个 Database 内,同一批数据只可导入成功一次。失败任务的 Label 可以重用。
      > 3. 流式导入是同步命令。命令返回成功则表示数据已经导入,返回失败表示这批数据没有导入。
 
    - Broker-Load
@@ -563,7 +571,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
    5 rows in set (0.01 sec)
    ```
 
-2. Join查询
+2. Join 查询
 
    ```mysql
    MySQL> SELECT SUM(table1.pv) FROM table1 JOIN table2 WHERE table1.siteid = 
table2.siteid;
@@ -591,7 +599,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
 > 关于 Update 使用的更多详细语法及最佳实践,请参阅 
 > [Update](../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/UPDATE.md)
 >  命令手册。
 
-当前 UPDATE 语句**仅支持**在 Unique 模型上的行更新,存在并发更新导致的数据冲突可能。 目前 Doris 
并不处理这类问题,需要用户从业务侧规避这类问题。
+当前 UPDATE 语句**仅支持**在 Unique 模型上的行更新,存在并发更新导致的数据冲突可能。目前 Doris 
并不处理这类问题,需要用户从业务侧规避这类问题。
 
 1. 语法规则
 
@@ -612,21 +620,21 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
    **参数说明**
 
-   - table_name: 待更新数据的目标表。可以是 'db_name.table_name' 形式
-   - assignment_list: 待更新的目标列,形如 'col_name = value, col_name = value' 格式
-   - where expression: 期望更新的条件,一个返回 true 或者 false 的表达式即可
+   - table_name:待更新数据的目标表。可以是 'db_name.table_name' 形式
+   - assignment_list:待更新的目标列,形如 'col_name = value, col_name = value' 格式
+   - where expression:期望更新的条件,一个返回 true 或者 false 的表达式即可
 
 2. 示例
 
-   `test` 表是一个 unique 模型的表,包含: k1, k2, v1, v2 四个列。其中 k1, k2 是 key,v1, v2 
是value,聚合方式是 Replace。
+   `test` 表是一个 Unique 模型表,包含 k1、k2、v1、v2 四个列。其中 k1、k2 是 key,v1、v2 是 
value,聚合方式是 Replace。
 
-   1. 将 'test' 表中满足条件 k1 =1 , k2 =2 的 v1 列更新为 1
+   1. 将 'test' 表中满足条件 k1 = 1 , k2 = 2 的 v1 列更新为 1
 
       ```sql
       UPDATE test SET v1 = 1 WHERE k1=1 and k2=2;
       ```
 
-   2. 将 'test' 表中 k1=1 的列的 v1 列自增1
+   2. 将 'test' 表中 k1 = 1 的列的 v1 列自增1
 
       ```sql
       UPDATE test SET v1 = v1+1 WHERE k1=1;
@@ -651,7 +659,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
 
    说明:
 
-   - op 的可选类型包括:=, >, <, >=, <=, !=, in, not in
+   - op 的可选类型包括:=、>、<、>=、<=、!=、in、not in。
 
    - 只能指定 key 列上的条件。
 
@@ -683,7 +691,7 @@ FE 将查询计划拆分成为 Fragment 下发到 BE 进行任务执行。BE 在
       DELETE FROM my_table PARTITION p1 WHERE k1 >= 3 AND k2 = "abc";
       ```
    
-   3. 删除 my_table partition p1, p2 中 k1 列值大于等于 3 且 k2 列值为 "abc" 的数据行
+   3. 删除 my_table partition p1、p2 中 k1 列值大于等于 3 且 k2 列值为 "abc" 的数据行
    
       ```sql
       DELETE FROM my_table PARTITIONS (p1, p2)  WHERE k1 >= 3 AND k2 = "abc";
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
index 690adb15506..779df359694 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Database-Administration-Statements/ADMIN-DIAGNOSE-TABLET.md
@@ -1,6 +1,6 @@
 ---
 {
-    "title": "ADMIN DIAGNOSE TABLET",
+    "title": "ADMIN-DIAGNOSE-TABLET",
     "language": "zh-CN"
 }
 ---


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to