You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ji...@apache.org on 2022/12/12 01:31:26 UTC

[doris] branch master updated: [typo](docs) fix get starting (#14870)

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.git


The following commit(s) were added to refs/heads/master by this push:
     new 614d7273f5 [typo](docs) fix get starting (#14870)
614d7273f5 is described below

commit 614d7273f596d4af4561c4cd9603105e2d8e4da0
Author: jiafeng.zhang <zh...@gmail.com>
AuthorDate: Mon Dec 12 09:31:20 2022 +0800

    [typo](docs) fix get starting (#14870)
    
    * [typo](doc)Fix Utility Statements Doc
---
 docs/en/docs/get-starting/get-starting.md                  | 5 +++++
 docs/en/docs/install/install-deploy.md                     | 8 +++++---
 docs/zh-CN/docs/admin-manual/cluster-management/upgrade.md | 6 +++++-
 docs/zh-CN/docs/get-starting/get-starting.md               | 7 +++++++
 docs/zh-CN/docs/install/install-deploy.md                  | 6 ++++--
 docs/zh-CN/docs/sql-manual/sql-reference/Operators/in.md   | 7 +++++++
 6 files changed, 33 insertions(+), 6 deletions(-)

diff --git a/docs/en/docs/get-starting/get-starting.md b/docs/en/docs/get-starting/get-starting.md
index 9d15a814e3..478095056c 100644
--- a/docs/en/docs/get-starting/get-starting.md
+++ b/docs/en/docs/get-starting/get-starting.md
@@ -199,6 +199,11 @@ storage_root_path=/path/your/data_dir
 >1. The default directory is in the storage directory of the BE installation directory.
 >2. The storage directory for BE configuration must be created first
 
+3. Install Java UDF functions 
+
+  <version since="1.2.0">Install Java UDF functions</version>
+  Because Java UDF functions are supported from version 1.2, you need to download the JAR package of Java UDF functions from the official website and put them in the lib directory of BE, otherwise it may fail to start.
+
 ### Start BE
 
 Execute the following command in the BE installation directory to complete the BE startup.
diff --git a/docs/en/docs/install/install-deploy.md b/docs/en/docs/install/install-deploy.md
index 227653f8ac..e06fd14d84 100644
--- a/docs/en/docs/install/install-deploy.md
+++ b/docs/en/docs/install/install-deploy.md
@@ -221,9 +221,11 @@ See the section on `lower_case_table_names` variables in [Variables](../../advan
 * BE webserver_port configuration
 
 	If the Be componet is installed in hadoop cluster , need to change configuration `webserver_port=8040`  to avoid port used.
-* 	Install Java UDF functions 
-   <version since="1.2.0">Install Java UDF functions</version>
-   Because Java UDF functions are supported from version 1.2, you need to download the JAR package of Java UDF functions from the official website and put them in the lib directory of BE, otherwise it may fail to start.
+
+* Install Java UDF functions 
+
+  <version since="1.2.0">Install Java UDF functions</version>
+  Because Java UDF functions are supported from version 1.2, you need to download the JAR package of Java UDF functions from the official website and put them in the lib directory of BE, otherwise it may fail to start.
 	
 * Add all BE nodes to FE
 
diff --git a/docs/zh-CN/docs/admin-manual/cluster-management/upgrade.md b/docs/zh-CN/docs/admin-manual/cluster-management/upgrade.md
index 989b39ebe1..f0ce22ae45 100644
--- a/docs/zh-CN/docs/admin-manual/cluster-management/upgrade.md
+++ b/docs/zh-CN/docs/admin-manual/cluster-management/upgrade.md
@@ -59,10 +59,14 @@ Doris 可以通过滚动升级的方式,平滑进行升级。建议按照以
 ## 测试 BE 升级正确性
 
 1. 任意选择一个 BE 节点,部署最新的 doris_be 二进制文件。
+
 2. 重启 BE 节点,通过 BE 日志 be.INFO,查看是否启动成功。
+
 3. 如果启动失败,可以先排查原因。如果错误不可恢复,可以直接通过 DROP BACKEND 删除该 BE、清理数据后,使用上一个版本的 doris_be 重新启动 BE。然后重新 ADD BACKEND。(**该方法会导致丢失一个数据副本,请务必确保3副本完整的情况下,执行这个操作!!!**)
+
 4. 安装 Java UDF 函数
-<version since="1.2.0">安装 Java UDF 函数: </version>, 因为从1.2 版本开始支持Java UDF 函数,需要从官网下载 Java UDF 函数的 JAR 包放到 BE 的 lib 目录下,否则可能会启动失败。
+
+   <version since="1.2.0">安装 Java UDF 函数: </version>, 因为从1.2 版本开始支持Java UDF 函数,需要从官网下载 Java UDF 函数的 JAR 包放到 BE 的 lib 目录下,否则可能会启动失败。
 
 
 ## 测试 FE 元数据兼容性
diff --git a/docs/zh-CN/docs/get-starting/get-starting.md b/docs/zh-CN/docs/get-starting/get-starting.md
index faa9cb72d9..2c6074dcc7 100644
--- a/docs/zh-CN/docs/get-starting/get-starting.md
+++ b/docs/zh-CN/docs/get-starting/get-starting.md
@@ -203,6 +203,13 @@ storage_root_path=/path/your/data_dir
 >1. 默认目录在 BE安装目录的 storage 目录下。
 >2. BE 配置的存储目录必须先创建好
 
+3. 安装 Java UDF 函数
+
+<version since="1.2.0">安装Java UDF 函数</version>
+因为从1.2 版本开始支持Java UDF 函数,需要从官网下载 Java UDF 函数的 JAR 包放到 BE 的 lib 目录下,否则可能会启动失败。
+
+
+
 ### 启动 BE
 
 在 BE 安装目录下执行下面的命令,来完成 BE 的启动。
diff --git a/docs/zh-CN/docs/install/install-deploy.md b/docs/zh-CN/docs/install/install-deploy.md
index dd043fa69b..5b478ab2d4 100644
--- a/docs/zh-CN/docs/install/install-deploy.md
+++ b/docs/zh-CN/docs/install/install-deploy.md
@@ -221,9 +221,11 @@ doris默认为表名大小写敏感,如有表名大小写不敏感的需求需
 * BE webserver_port端口配置
 
   如果 be 部署在 hadoop 集群中,注意调整 be.conf 中的 `webserver_port = 8040` ,以免造成端口冲突
+
 * 安装 Java UDF 函数
-<version since="1.2.0">安装Java UDF 函数</version>
-  因为从1.2 版本开始支持Java UDF 函数,需要从官网下载 Java UDF 函数的 JAR 包放到 BE 的 lib 目录下,否则可能会启动失败。
+
+   <version since="1.2.0">安装Java UDF 函数</version>
+   因为从1.2 版本开始支持Java UDF 函数,需要从官网下载 Java UDF 函数的 JAR 包放到 BE 的 lib 目录下,否则可能会启动失败。
 
 * 在 FE 中添加所有 BE 节点
 
diff --git a/docs/zh-CN/docs/sql-manual/sql-reference/Operators/in.md b/docs/zh-CN/docs/sql-manual/sql-reference/Operators/in.md
index bd9f6383ee..1cd14d15ec 100644
--- a/docs/zh-CN/docs/sql-manual/sql-reference/Operators/in.md
+++ b/docs/zh-CN/docs/sql-manual/sql-reference/Operators/in.md
@@ -25,6 +25,13 @@ under the License.
 -->
 
 ## IN
+
+<version since="1.2.0">
+
+IN
+
+</version>
+
 ### description
 #### Syntax
 


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