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:28:53 UTC

[doris-website] branch master updated: fix link 404 error (#135)

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 bfdbe0cca55 fix link 404 error (#135)
bfdbe0cca55 is described below

commit bfdbe0cca5530ca47b6eef01635f8e7e8ee7d9cb
Author: lsy3993 <11...@users.noreply.github.com>
AuthorDate: Sun Oct 9 09:28:48 2022 +0800

    fix link 404 error (#135)
---
 .../administrator-guide/alter-table/alter-table-rollup.md           | 2 +-
 versioned_docs/version-0.15/administrator-guide/config/be_config.md | 2 +-
 .../administrator-guide/load-data/routine-load-manual.md            | 2 +-
 .../version-0.15/administrator-guide/operation/disk-capacity.md     | 2 +-
 .../administrator-guide/operation/metadata-operation.md             | 6 +++---
 versioned_docs/version-0.15/administrator-guide/outfile.md          | 2 +-
 .../version-0.15/administrator-guide/resource-management.md         | 2 +-
 versioned_docs/version-0.15/best-practices/star-schema-benchmark.md | 2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/versioned_docs/version-0.15/administrator-guide/alter-table/alter-table-rollup.md b/versioned_docs/version-0.15/administrator-guide/alter-table/alter-table-rollup.md
index a3df4c8dc26..f8ceca3bef4 100644
--- a/versioned_docs/version-0.15/administrator-guide/alter-table/alter-table-rollup.md
+++ b/versioned_docs/version-0.15/administrator-guide/alter-table/alter-table-rollup.md
@@ -27,7 +27,7 @@ under the License.
 # Rollup
 
 Users can speed up queries by creating rollup tables. For the concept and usage of Rollup, please refer to [Data
- Model, ROLLUP and Prefix Index](../../getting-started/data-model-rollup_EN.md) and 
+ Model, ROLLUP and Prefix Index](../../getting-started/data-model-rollup) and 
  [Rollup and query](../../getting-started/hit-the-rollup_EN.md).
 
 This document focuses on how to create a Rollup job, as well as some considerations and frequently asked questions about creating a Rollup.
diff --git a/versioned_docs/version-0.15/administrator-guide/config/be_config.md b/versioned_docs/version-0.15/administrator-guide/config/be_config.md
index aec6bfa1c8b..47eed01cb81 100644
--- a/versioned_docs/version-0.15/administrator-guide/config/be_config.md
+++ b/versioned_docs/version-0.15/administrator-guide/config/be_config.md
@@ -456,7 +456,7 @@ Cgroups assigned to doris
 ### `doris_max_scan_key_num`
 
 * Type: int
-* Description: Used to limit the maximum number of scan keys that a scan node can split in a query request. When a conditional query request reaches the scan node, the scan node will try to split the conditions related to the key column in the query condition into multiple scan key ranges. After that, these scan key ranges will be assigned to multiple scanner threads for data scanning. A larger value usually means that more scanner threads can be used to increase the parallelism of the s [...]
+* Description: Used to limit the maximum number of scan keys that a scan node can split in a query request. When a conditional query request reaches the scan node, the scan node will try to split the conditions related to the key column in the query condition into multiple scan key ranges. After that, these scan key ranges will be assigned to multiple scanner threads for data scanning. A larger value usually means that more scanner threads can be used to increase the parallelism of the s [...]
 * Default value: 1024
 
 When the concurrency cannot be improved in high concurrency scenarios, try to reduce this value and observe the impact.
diff --git a/versioned_docs/version-0.15/administrator-guide/load-data/routine-load-manual.md b/versioned_docs/version-0.15/administrator-guide/load-data/routine-load-manual.md
index 35b3cf8a6c1..5fe5558626c 100644
--- a/versioned_docs/version-0.15/administrator-guide/load-data/routine-load-manual.md
+++ b/versioned_docs/version-0.15/administrator-guide/load-data/routine-load-manual.md
@@ -243,7 +243,7 @@ You can only view tasks that are currently running, and tasks that have ended an
 
 ### Alter job
 
-Users can modify jobs that have been created. Specific instructions can be viewed through the `HELP ALTER ROUTINE LOAD;` command. Or refer to [ALTER ROUTINE LOAD](../../sql-reference/sql-statements/Data%20Manipulation/alter-routine-load.md).
+Users can modify jobs that have been created. Specific instructions can be viewed through the `HELP ALTER ROUTINE LOAD;` command. Or refer to [ALTER ROUTINE LOAD](../../sql-reference/sql-statements/Data-Manipulation/alter-routine-load).
 
 ### Job Control
 
diff --git a/versioned_docs/version-0.15/administrator-guide/operation/disk-capacity.md b/versioned_docs/version-0.15/administrator-guide/operation/disk-capacity.md
index 71027d9f6e3..515ce4b1737 100644
--- a/versioned_docs/version-0.15/administrator-guide/operation/disk-capacity.md
+++ b/versioned_docs/version-0.15/administrator-guide/operation/disk-capacity.md
@@ -164,6 +164,6 @@ When the disk capacity is higher than High Watermark or even Flood Stage, many o
 
         ```rm -rf data/0/12345/```
 
-    * Delete tablet metadata (refer to [Tablet metadata management tool](./tablet-meta-tool.md))
+    * Delete tablet metadata (refer to [Tablet metadata management tool](./tablet-meta-tool))
 
         ```./lib/meta_tool --operation=delete_header --root_path=/path/to/root_path --tablet_id=12345 --schema_hash= 352781111```
\ No newline at end of file
diff --git a/versioned_docs/version-0.15/administrator-guide/operation/metadata-operation.md b/versioned_docs/version-0.15/administrator-guide/operation/metadata-operation.md
index c5f6ced96c2..d1688d27157 100644
--- a/versioned_docs/version-0.15/administrator-guide/operation/metadata-operation.md
+++ b/versioned_docs/version-0.15/administrator-guide/operation/metadata-operation.md
@@ -28,11 +28,11 @@ under the License.
 
 This document focuses on how to manage Doris metadata in a real production environment. It includes the proposed deployment of FE nodes, some commonly used operational methods, and common error resolution methods.
 
-For the time being, read the [Doris metadata design document](../../internal/metadata-design_EN.md) to understand how Doris metadata works.
+For the time being, read the [Doris metadata design document](../../internal/metadata-design) to understand how Doris metadata works.
 
 ## Important tips
 
-* Current metadata design is not backward compatible. That is, if the new version has a new metadata structure change (you can see whether there is a new VERSION in the `FeMetaVersion.java` file in the FE code), it is usually impossible to roll back to the old version after upgrading to the new version. Therefore, before upgrading FE, be sure to test metadata compatibility according to the operations in the [Upgrade Document](../../installing/upgrade_EN.md).
+* Current metadata design is not backward compatible. That is, if the new version has a new metadata structure change (you can see whether there is a new VERSION in the `FeMetaVersion.java` file in the FE code), it is usually impossible to roll back to the old version after upgrading to the new version. Therefore, before upgrading FE, be sure to test metadata compatibility according to the operations in the [Upgrade Document](../../installing/upgrade).
 
 ## Metadata catalog structure
 
@@ -333,7 +333,7 @@ The third level can display the value information of the specified key.
 
 ## Best Practices
 
-The deployment recommendation of FE is described in the Installation and [Deployment Document](../../installing/install-deploy_EN.md). Here are some supplements.
+The deployment recommendation of FE is described in the Installation and [Deployment Document](../../installing/install-deploy). Here are some supplements.
 
 * **If you don't know the operation logic of FE metadata very well, or you don't have enough experience in the operation and maintenance of FE metadata, we strongly recommend that only one FOLLOWER-type FE be deployed as MASTER in practice, and the other FEs are OBSERVER, which can reduce many complex operation and maintenance problems.** Don't worry too much about the failure of MASTER single point to write metadata. First, if you configure it properly, FE as a java process is very diff [...]
 
diff --git a/versioned_docs/version-0.15/administrator-guide/outfile.md b/versioned_docs/version-0.15/administrator-guide/outfile.md
index e2dd8c207d1..dbea062d9a6 100644
--- a/versioned_docs/version-0.15/administrator-guide/outfile.md
+++ b/versioned_docs/version-0.15/administrator-guide/outfile.md
@@ -63,7 +63,7 @@ INTO OUTFILE "file_path"
 
     Specify the relevant attributes. Currently it supports exporting through the Broker process, or through the S3, HDFS protocol.
 
-    + Broker related attributes need to be prefixed with `broker.`. For details, please refer to [Broker Document](./broker.html).
+    + Broker related attributes need to be prefixed with `broker.`. For details, please refer to [Broker Document](./broker).
     + HDFS protocal can directly execute HDFS protocal configuration.
     + S3 protocol can directly execute S3 protocol configuration.
 
diff --git a/versioned_docs/version-0.15/administrator-guide/resource-management.md b/versioned_docs/version-0.15/administrator-guide/resource-management.md
index 7d0ed320794..b0a1e3e7cce 100644
--- a/versioned_docs/version-0.15/administrator-guide/resource-management.md
+++ b/versioned_docs/version-0.15/administrator-guide/resource-management.md
@@ -147,7 +147,7 @@ PROPERTIES
 `driver`: Indicates the driver dynamic library used by the ODBC external table.
 The ODBC external table referring to the resource is required. The old MySQL external table referring to the resource is optional.
 
-For the usage of ODBC resource, please refer to [ODBC of Doris](../extending-doris/odbc-of-doris.html)
+For the usage of ODBC resource, please refer to [ODBC of Doris](../extending-doris/odbc-of-doris)
 
 
 #### Example
diff --git a/versioned_docs/version-0.15/best-practices/star-schema-benchmark.md b/versioned_docs/version-0.15/best-practices/star-schema-benchmark.md
index d6311e5a8d5..17288bbcc0f 100644
--- a/versioned_docs/version-0.15/best-practices/star-schema-benchmark.md
+++ b/versioned_docs/version-0.15/best-practices/star-schema-benchmark.md
@@ -36,7 +36,7 @@ This document mainly introduces how to pass the preliminary performance test of
 
 ## Environmental preparation
 
-Please refer to the [official document](http://doris.incubator.apache.org/master/en/installing/install-deploy.html) to install and deploy Doris to obtain a normal running Doris cluster ( Contain at least 1 FE, 1 BE).
+Please refer to the [official document](../installing/install-deploy) to install and deploy Doris to obtain a normal running Doris cluster ( Contain at least 1 FE, 1 BE).
 
 The scripts involved in the following documents are all stored under `tools/ssb-tools/` in the Doris code base.
 


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