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/10/11 07:41:08 UTC

[doris] branch master updated: [typo](docs)fix error url (#13171)

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 eb60976c25 [typo](docs)fix error url (#13171)
eb60976c25 is described below

commit eb60976c257db917a4f34921a2a1dc84d25f475a
Author: caoliang-web <71...@users.noreply.github.com>
AuthorDate: Tue Oct 11 15:41:00 2022 +0800

    [typo](docs)fix error url (#13171)
    
    * fix error url
---
 docs/en/docs/advanced/resource.md                                   | 2 +-
 .../docs/data-operate/import/import-scenes/external-storage-load.md | 2 +-
 docs/en/docs/data-operate/import/import-scenes/jdbc-load.md         | 4 ++--
 docs/en/docs/data-table/basic-usage.md                              | 6 +++---
 .../docs/admin-manual/maint-monitor/tablet-repair-and-balance.md    | 2 +-
 docs/zh-CN/docs/advanced/alter-table/replace-table.md               | 2 +-
 docs/zh-CN/docs/advanced/resource.md                                | 2 +-
 .../docs/data-operate/import/import-scenes/external-storage-load.md | 2 +-
 docs/zh-CN/docs/data-operate/import/import-scenes/jdbc-load.md      | 4 ++--
 docs/zh-CN/docs/data-table/basic-usage.md                           | 6 +++---
 docs/zh-CN/docs/data-table/hit-the-rollup.md                        | 2 +-
 11 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/docs/en/docs/advanced/resource.md b/docs/en/docs/advanced/resource.md
index 494ed7b200..885240d190 100644
--- a/docs/en/docs/advanced/resource.md
+++ b/docs/en/docs/advanced/resource.md
@@ -74,7 +74,7 @@ The following shows how the two resources are used.
 
 `spark.hadoop.fs.defaultFS`: required when master is yarn.
 
-Other parameters are optional, refer to: http://spark.apache.org/docs/latest/configuration.html.
+Other parameters are optional, refer to: http://spark.apache.org/docs/latest/configuration.html
 
 ##### If spark is used for ETL, also need to specify the following parameters:
 
diff --git a/docs/en/docs/data-operate/import/import-scenes/external-storage-load.md b/docs/en/docs/data-operate/import/import-scenes/external-storage-load.md
index 8b4537e097..9c9358d12f 100644
--- a/docs/en/docs/data-operate/import/import-scenes/external-storage-load.md
+++ b/docs/en/docs/data-operate/import/import-scenes/external-storage-load.md
@@ -82,7 +82,7 @@ Hdfs load creates an import statement. The import method is basically the same a
 
 3. Check import status
 
-   Broker load is an asynchronous import method. The specific import results can be accessed through [SHOW LOAD](../../../sql-manual/sql-reference/Show-Statements/SHOW-LOAD.md#show-load) command to view
+   Broker load is an asynchronous import method. The specific import results can be accessed through [SHOW LOAD](../../../sql-manual/sql-reference/Show-Statements/SHOW-LOAD) command to view
    
    ```
    mysql> show load order by createtime desc limit 1\G;
diff --git a/docs/en/docs/data-operate/import/import-scenes/jdbc-load.md b/docs/en/docs/data-operate/import/import-scenes/jdbc-load.md
index a74f1c9a6b..45c743dc6d 100644
--- a/docs/en/docs/data-operate/import/import-scenes/jdbc-load.md
+++ b/docs/en/docs/data-operate/import/import-scenes/jdbc-load.md
@@ -35,7 +35,7 @@ The INSERT statement is used in a similar way to the INSERT statement used in da
 * INSERT INTO table VALUES(...)
 ````
 
-Here we only introduce the second way. For a detailed description of the INSERT command, see the [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) command documentation.
+Here we only introduce the second way. For a detailed description of the INSERT command, see the [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) command documentation.
 
 ## Single write
 
@@ -160,4 +160,4 @@ Please note the following:
 
    As mentioned earlier, we recommend that when using INSERT to import data, use the "batch" method to import, rather than a single insert.
 
-   At the same time, we can set a Label for each INSERT operation. Through the [Label mechanism](./load-atomicity.md#label-mechanism), the idempotency and atomicity of operations can be guaranteed, and the data will not be lost or heavy in the end. For the specific usage of Label in INSERT, you can refer to the [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) document.
+   At the same time, we can set a Label for each INSERT operation. Through the [Label mechanism](./load-atomicity), the idempotency and atomicity of operations can be guaranteed, and the data will not be lost or heavy in the end. For the specific usage of Label in INSERT, you can refer to the [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) document.
diff --git a/docs/en/docs/data-table/basic-usage.md b/docs/en/docs/data-table/basic-usage.md
index 04e53e81d0..430cf6dbaf 100644
--- a/docs/en/docs/data-table/basic-usage.md
+++ b/docs/en/docs/data-table/basic-usage.md
@@ -142,7 +142,7 @@ mysql> USE example_db;
 Database changed
 ```
 
-Doris supports [composite partition and single partition](data-partition.html#composite partition and single partition)  two table building methods. The following takes the aggregation model as an example to demonstrate how to create two partitioned data tables.
+Doris supports [composite partition and single partition](./data-partition)  two table building methods. The following takes the aggregation model as an example to demonstrate how to create two partitioned data tables.
 
 #### Single partition
 
@@ -406,7 +406,7 @@ MySQL> SELECT SUM(pv) FROM table2 WHERE siteid IN (SELECT siteid FROM table1 WHE
 
 ## Table Structure Change
 
-Use the [ALTER TABLE COLUMN](. /sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN.md) command to modify the table Schema, including the following changes.
+Use the [ALTER TABLE COLUMN](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN) command to modify the table Schema, including the following changes.
 
 - Adding columns
 - Deleting columns
@@ -470,7 +470,7 @@ For more help, see ``HELP ALTER TABLE``.
 
 Rollup can be understood as a materialized index structure for a Table. **Materialized** because its data is physically stored independently, and **Indexed** in the sense that Rollup can reorder columns to increase the hit rate of prefix indexes, and can reduce key columns to increase the aggregation of data.
 
-Use [ALTER TABLE ROLLUP](... /sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-ROLLUP.md) to perform various changes to Rollup.
+Use [ALTER TABLE ROLLUP](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-ROLLUP) to perform various changes to Rollup.
 
 The following examples are given
 
diff --git a/docs/zh-CN/docs/admin-manual/maint-monitor/tablet-repair-and-balance.md b/docs/zh-CN/docs/admin-manual/maint-monitor/tablet-repair-and-balance.md
index 949db24aa5..b842fd6ada 100644
--- a/docs/zh-CN/docs/admin-manual/maint-monitor/tablet-repair-and-balance.md
+++ b/docs/zh-CN/docs/admin-manual/maint-monitor/tablet-repair-and-balance.md
@@ -216,7 +216,7 @@ TabletScheduler 里等待被调度的分片会根据状态不同,赋予不同
 
 ## 副本均衡
 
-Doris 会自动进行集群内的副本均衡。目前支持两种均衡策略,负载/分区。负载均衡适合需要兼顾节点磁盘使用率和节点副本数量的场景;而分区均衡会使每个分区的副本都均匀分布在各个节点,避免热点,适合对分区读写要求比较高的场景。但是,分区均衡不考虑磁盘使用率,使用分区均衡时需要注意磁盘的使用情况。 策略只能在fe启动前配置[tablet_rebalancer_type](../config/fe-config.html#配置项列表 )  ,不支持运行时切换。
+Doris 会自动进行集群内的副本均衡。目前支持两种均衡策略,负载/分区。负载均衡适合需要兼顾节点磁盘使用率和节点副本数量的场景;而分区均衡会使每个分区的副本都均匀分布在各个节点,避免热点,适合对分区读写要求比较高的场景。但是,分区均衡不考虑磁盘使用率,使用分区均衡时需要注意磁盘的使用情况。 策略只能在fe启动前配置[tablet_rebalancer_type](../config/fe-config )  ,不支持运行时切换。
 
 ### 负载均衡
 
diff --git a/docs/zh-CN/docs/advanced/alter-table/replace-table.md b/docs/zh-CN/docs/advanced/alter-table/replace-table.md
index f43ca70605..63afc3471c 100644
--- a/docs/zh-CN/docs/advanced/alter-table/replace-table.md
+++ b/docs/zh-CN/docs/advanced/alter-table/replace-table.md
@@ -28,7 +28,7 @@ under the License.
 
 在 0.14 版本中,Doris 支持对两个表进行原子的替换操作。 该操作仅适用于 OLAP 表。
 
-分区级别的替换操作,请参阅 [临时分区文档](../partition/table-tmp-partition)
+分区级别的替换操作,请参阅 [临时分区文档](../partition/table-temp-partition)
 
 ## 语法说明
 
diff --git a/docs/zh-CN/docs/advanced/resource.md b/docs/zh-CN/docs/advanced/resource.md
index df01e72a76..88bc67114c 100644
--- a/docs/zh-CN/docs/advanced/resource.md
+++ b/docs/zh-CN/docs/advanced/resource.md
@@ -73,7 +73,7 @@ under the License.
 
 `spark.hadoop.fs.defaultFS`: master为yarn时必填。
 
-其他参数为可选,参考http://spark.apache.org/docs/latest/configuration.html。
+其他参数为可选,参考http://spark.apache.org/docs/latest/configuration.html
 
 ##### 如果Spark用于ETL,还需要指定以下参数:
 
diff --git a/docs/zh-CN/docs/data-operate/import/import-scenes/external-storage-load.md b/docs/zh-CN/docs/data-operate/import/import-scenes/external-storage-load.md
index 60b7b6c495..1dd619cde0 100644
--- a/docs/zh-CN/docs/data-operate/import/import-scenes/external-storage-load.md
+++ b/docs/zh-CN/docs/data-operate/import/import-scenes/external-storage-load.md
@@ -86,7 +86,7 @@ Hdfs load 创建导入语句,导入方式和[Broker Load](../../../data-operat
   
 3. 查看导入状态
    
-   Broker load 是一个异步的导入方式,具体导入结果可以通过[SHOW LOAD](../../../sql-manual/sql-reference/Show-Statements/SHOW-LOAD.md#show-load)命令查看
+   Broker load 是一个异步的导入方式,具体导入结果可以通过[SHOW LOAD](../../../sql-manual/sql-reference/Show-Statements/SHOW-LOAD)命令查看
    
    ```
    mysql> show load order by createtime desc limit 1\G;
diff --git a/docs/zh-CN/docs/data-operate/import/import-scenes/jdbc-load.md b/docs/zh-CN/docs/data-operate/import/import-scenes/jdbc-load.md
index ebc8492fbf..36725343f0 100644
--- a/docs/zh-CN/docs/data-operate/import/import-scenes/jdbc-load.md
+++ b/docs/zh-CN/docs/data-operate/import/import-scenes/jdbc-load.md
@@ -35,7 +35,7 @@ INSERT 语句的使用方式和 MySQL 等数据库中 INSERT 语句的使用方
 * INSERT INTO table VALUES(...)
 ```
 
-这里我们仅介绍第二种方式。关于 INSERT 命令的详细说明,请参阅 [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) 命令文档。
+这里我们仅介绍第二种方式。关于 INSERT 命令的详细说明,请参阅 [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) 命令文档。
 
 ## 单次写入
 
@@ -160,4 +160,4 @@ public class DorisJDBCDemo {
 
    前面提到,我们建议在使用 INSERT 导入数据时,采用 ”批“ 的方式进行导入,而不是单条插入。
 
-   同时,我们可以为每次 INSERT 操作设置一个 Label。通过 [Label 机制](./load-atomicity.md#label-机制) 可以保证操作的幂等性和原子性,最终做到数据的不丢不重。关于 INSERT 中 Label 的具体用法,可以参阅 [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT.md) 文档。
+   同时,我们可以为每次 INSERT 操作设置一个 Label。通过 [Label 机制](./load-atomicity) 可以保证操作的幂等性和原子性,最终做到数据的不丢不重。关于 INSERT 中 Label 的具体用法,可以参阅 [INSERT](../../../sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/INSERT) 文档。
diff --git a/docs/zh-CN/docs/data-table/basic-usage.md b/docs/zh-CN/docs/data-table/basic-usage.md
index 49d2504719..a06de3c3a9 100644
--- a/docs/zh-CN/docs/data-table/basic-usage.md
+++ b/docs/zh-CN/docs/data-table/basic-usage.md
@@ -165,7 +165,7 @@ mysql> USE example_db;
 Database changed
 ```
 
-Doris支持[复合分区和单分区](data-partition.html#复合分区与单分区)两种建表方式。下面以聚合模型为例,分别演示如何创建两种分区的数据表。
+Doris支持[复合分区和单分区](./data-partition)两种建表方式。下面以聚合模型为例,分别演示如何创建两种分区的数据表。
 
 #### 单分区
 
@@ -431,7 +431,7 @@ mysql> SELECT SUM(pv) FROM table2 WHERE siteid IN (SELECT siteid FROM table1 WHE
 
 ## 表结构变更
 
-使用 [ALTER TABLE COLUMN](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN.md) 命令可以修改表的 Schema,包括如下修改:
+使用 [ALTER TABLE COLUMN](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN) 命令可以修改表的 Schema,包括如下修改:
 
 - 增加列
 - 删除列
@@ -495,7 +495,7 @@ CANCEL ALTER TABLE COLUMN FROM table1;
 
 Rollup 可以理解为 Table 的一个物化索引结构。**物化** 是因为其数据在物理上独立存储,而 **索引** 的意思是,Rollup可以调整列顺序以增加前缀索引的命中率,也可以减少key列以增加数据的聚合度。
 
-使用[ALTER TABLE ROLLUP](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-ROLLUP.md)可以进行Rollup的各种变更操作。
+使用[ALTER TABLE ROLLUP](../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-ROLLUP)可以进行Rollup的各种变更操作。
 
 以下举例说明
 
diff --git a/docs/zh-CN/docs/data-table/hit-the-rollup.md b/docs/zh-CN/docs/data-table/hit-the-rollup.md
index 0b93640b9c..6baf8ac2c7 100644
--- a/docs/zh-CN/docs/data-table/hit-the-rollup.md
+++ b/docs/zh-CN/docs/data-table/hit-the-rollup.md
@@ -44,7 +44,7 @@ ROLLUP 表的基本作用,在于在 Base 表的基础上,获得更粗粒度
 
 1. 示例1:获得每个用户的总消费
 
-接 **[数据模型Aggregate 模型](./data-model.html#Aggregate模型)**小节的**示例2**,Base 表结构如下:
+接 **[数据模型Aggregate 模型](./data-model)**小节的**示例2**,Base 表结构如下:
 
 | ColumnName      | Type        | AggregationType | Comment                |
 | --------------- | ----------- | --------------- | ---------------------- |


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