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/09 01:35:39 UTC

[doris-website] branch master updated: [typo](docs)fix error url (#129)

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

commit 48e751853e77bc08b8f08e4490bbdacf05ec2bf0
Author: caoliang-web <71...@users.noreply.github.com>
AuthorDate: Sun Oct 9 09:35:34 2022 +0800

    [typo](docs)fix error url (#129)
    
    * fix error url
    
    * fix error url
    
    Co-authored-by: jiafeng.zhang <zh...@gmail.com>
---
 docs/advanced/alter-table/replace-table.md                        | 2 +-
 docs/advanced/resource.md                                         | 2 +-
 docs/data-operate/import/import-scenes/external-storage-load.md   | 2 +-
 docs/data-operate/import/import-scenes/jdbc-load.md               | 3 ++-
 docs/data-table/basic-usage.md                                    | 8 ++++----
 .../admin-manual/maint-monitor/tablet-repair-and-balance.md       | 2 +-
 .../current/advanced/alter-table/replace-table.md                 | 2 +-
 .../docusaurus-plugin-content-docs/current/advanced/resource.md   | 2 +-
 .../current/data-operate/import/import-scenes/jdbc-load.md        | 2 +-
 .../current/data-table/basic-usage.md                             | 6 +++---
 10 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/docs/advanced/alter-table/replace-table.md b/docs/advanced/alter-table/replace-table.md
index ad1fc22b319..204b395a44d 100644
--- a/docs/advanced/alter-table/replace-table.md
+++ b/docs/advanced/alter-table/replace-table.md
@@ -69,4 +69,4 @@ If `swap` is `false`, the operation is as follows:
 
 1. Atomic Overwrite Operation
 
-    In some cases, the user wants to be able to rewrite the data of a certain table, but if it is dropped and then imported, there will be a period of time in which the data cannot be viewed. At this time, the user can first use the `CREATE TABLE LIKE` statement to create a new table with the same structure, import the new data into the new table, and replace the old table atomically through the replacement operation to achieve the goal. For partition level atomic overwrite operation, pl [...]
+    In some cases, the user wants to be able to rewrite the data of a certain table, but if it is dropped and then imported, there will be a period of time in which the data cannot be viewed. At this time, the user can first use the `CREATE TABLE LIKE` statement to create a new table with the same structure, import the new data into the new table, and replace the old table atomically through the replacement operation to achieve the goal. For partition level atomic overwrite operation, pl [...]
diff --git a/docs/advanced/resource.md b/docs/advanced/resource.md
index 494ed7b2008..885240d1903 100644
--- a/docs/advanced/resource.md
+++ b/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/data-operate/import/import-scenes/external-storage-load.md b/docs/data-operate/import/import-scenes/external-storage-load.md
index 4909e0cd03e..9c9358d12fd 100644
--- a/docs/data-operate/import/import-scenes/external-storage-load.md
+++ b/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.html#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/data-operate/import/import-scenes/jdbc-load.md b/docs/data-operate/import/import-scenes/jdbc-load.md
index a74f1c9a6b7..f38c7771ba8 100644
--- a/docs/data-operate/import/import-scenes/jdbc-load.md
+++ b/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
 
@@ -161,3 +161,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.
+
diff --git a/docs/data-table/basic-usage.md b/docs/data-table/basic-usage.md
index e24d211779f..8d8ce9d1564 100644
--- a/docs/data-table/basic-usage.md
+++ b/docs/data-table/basic-usage.md
@@ -107,7 +107,7 @@ CREATE DATABASE example_db;
 >
 > If you don't know the full name of the command, you can use "help command a field" for fuzzy query. If you type `HELP CREATE`, you can match commands like `CREATE DATABASE', `CREATE TABLE', `CREATE USER', etc.
 
-After the database is created, you can view the database information through [SHOW DATABASES](../sql-manual/sql-reference/Show-Statements/SHOW-DATABASES.html#show-databases).
+After the database is created, you can view the database information through [SHOW DATABASES](../sql-manual/sql-reference/Show-Statements/SHOW-DATABASES).
 
 ```sql
 MySQL> SHOW DATABASES;
@@ -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/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/maint-monitor/tablet-repair-and-balance.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/maint-monitor/tablet-repair-and-balance.md
index 4d02a4b1191..64b4a95542a 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/maint-monitor/tablet-repair-and-balance.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/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/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/alter-table/replace-table.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/alter-table/replace-table.md
index 63afc3471c3..7e24bfb28af 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/alter-table/replace-table.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/alter-table/replace-table.md
@@ -68,4 +68,4 @@ ALTER TABLE [db.]tbl1 REPLACE WITH TABLE tbl2
 
 1. 原子的覆盖写操作
 
-   某些情况下,用户希望能够重写某张表的数据,但如果采用先删除再导入的方式进行,在中间会有一段时间无法查看数据。这时,用户可以先使用 `CREATE TABLE LIKE` 语句创建一个相同结构的新表,将新的数据导入到新表后,通过替换操作,原子的替换旧表,以达到目的。分区级别的原子覆盖写操作,请参阅 [临时分区文档](../partition/table-tmp-partition.md)。
+   某些情况下,用户希望能够重写某张表的数据,但如果采用先删除再导入的方式进行,在中间会有一段时间无法查看数据。这时,用户可以先使用 `CREATE TABLE LIKE` 语句创建一个相同结构的新表,将新的数据导入到新表后,通过替换操作,原子的替换旧表,以达到目的。分区级别的原子覆盖写操作,请参阅 [临时分区文档](../partition/table-temp-partition)。
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/resource.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/resource.md
index df01e72a764..88bc67114c3 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/advanced/resource.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/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/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-scenes/jdbc-load.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-scenes/jdbc-load.md
index dfb67028400..36725343f07 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-scenes/jdbc-load.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/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) 命令文档。
 
 ## 单次写入
 
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-table/basic-usage.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-table/basic-usage.md
index 5b658252870..d60288e14c4 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-table/basic-usage.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/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的各种变更操作。
 
 以下举例说明
 


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