Skip to content

Commit

Permalink
[typo](docs)fix docs 404 link (apache#13677)
Browse files Browse the repository at this point in the history
  • Loading branch information
hf200012 authored Oct 26, 2022
1 parent 0841c5b commit c555987
Show file tree
Hide file tree
Showing 52 changed files with 200 additions and 131 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,4 +299,4 @@ xxx

## Finish publishing

Please refer to the [Completing the Release](./release-complete) documentation to complete all release processes.
Please refer to the [Completing the Release](../release-complete) documentation to complete all release processes.
6 changes: 3 additions & 3 deletions docs/en/community/release-and-verify/release-verify.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ If invalid is 0, then the validation passes.

Please see the compilation documentation of each component to verify the compilation.

* For Doris Core, see [compilation documentation](../../docs/install/source-install/compilation)
* Flink Doris Connector, see [compilation documentation](../../docs/ecosystem/flink-doris-connector)
* Spark Doris Connector, see [compilation documentation](../../docs/ecosystem/spark-doris-connector)
* For Doris Core, see [compilation documentation](/docs/install/source-install/compilation)
* Flink Doris Connector, see [compilation documentation](/docs/ecosystem/flink-doris-connector)
* Spark Doris Connector, see [compilation documentation](/docs/ecosystem/spark-doris-connector)
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ You can also view the BE node through the front-end page connection: ``http://fe

All of the above methods require Doris's root user rights.

The expansion and scaling process of BE nodes does not affect the current system operation and the tasks being performed, and does not affect the performance of the current system. Data balancing is done automatically. Depending on the amount of data available in the cluster, the cluster will be restored to load balancing in a few hours to a day. For cluster load, see the [Tablet Load Balancing Document](../maint-monitor/tablet-repair-and-balance).
The expansion and scaling process of BE nodes does not affect the current system operation and the tasks being performed, and does not affect the performance of the current system. Data balancing is done automatically. Depending on the amount of data available in the cluster, the cluster will be restored to load balancing in a few hours to a day. For cluster load, see the [Tablet Load Balancing Document](../../maint-monitor/tablet-repair-and-balance).

### Add BE nodes

Expand Down
2 changes: 1 addition & 1 deletion docs/en/docs/admin-manual/data-admin/delete-recover.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ RECOVER PARTITION p1 FROM example_tbl;

## More Help

For more detailed syntax and best practices used by RECOVER, please refer to the [RECOVER](../../sql-manual/sql-reference/Database-Administration-Statements/RECOVER) command manual, You can also type `HELP RECOVER` on the MySql client command line for more help.
For more detailed syntax and best practices used by RECOVER, please refer to the [RECOVER](../../../sql-manual/sql-reference/Database-Administration-Statements/RECOVER) command manual, You can also type `HELP RECOVER` on the MySql client command line for more help.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ None
"count": 0
}
```
Note: The difference is that the `http` method returns more `aggregation_type` fields than the `http v2` method. The `http v2` is enabled by setting `enable_http_server_v2`. For detailed parameter descriptions, see [fe parameter settings](../../config/fe-config)
Note: The difference is that the `http` method returns more `aggregation_type` fields than the `http v2` method. The `http v2` is enabled by setting `enable_http_server_v2`. For detailed parameter descriptions, see [fe parameter settings](../../../config/fe-config)

## Examples

Expand Down
2 changes: 1 addition & 1 deletion docs/en/docs/admin-manual/maint-monitor/disk-capacity.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ When the disk capacity is higher than High Watermark or even Flood Stage, many o
* snapshot/: Snapshot files in the snapshot directory.
* trash/ Trash files in the trash directory.
**This operation will affect [Restore data from BE Recycle Bin](./tablet-restore-tool.md).**
**This operation will affect [Restore data from BE Recycle Bin](../../tablet-restore-tool).**
If the BE can still be started, you can use `ADMIN CLEAN TRASH ON(BackendHost:BackendHeartBeatPort);` to actively clean up temporary files. **all trash files** and expired snapshot files will be cleaned up, **This will affect the operation of restoring data from the trash bin**.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ For the time being, read the [Doris metadata design document](/community/design/

## 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](../../admin-manual/cluster-management/upgrade).
* 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](../../../admin-manual/cluster-management/upgrade).

## Metadata catalog structure

Expand Down
4 changes: 2 additions & 2 deletions docs/en/docs/advanced/alter-table/replace-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ under the License.
In version 0.14, Doris supports atomic replacement of two tables.
This operation only applies to OLAP tables.

For partition level replacement operations, please refer to [Temporary Partition Document](../partition/table-temp-partition)
For partition level replacement operations, please refer to [Temporary Partition Document](../../partition/table-temp-partition)

## Syntax

Expand Down Expand Up @@ -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, please refer to [Temporary partition document](../partition/table-temp-partition.md)
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, please refer to [Temporary partition document](../../partition/table-temp-partition)
2 changes: 1 addition & 1 deletion docs/en/docs/advanced/alter-table/schema-change.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,5 +283,5 @@ SHOW ALTER TABLE COLUMN\G;
## More Help
For more detailed syntax and best practices used by Schema Change, see [ALTER TABLE COLUMN](../../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN) command manual, you can also enter `HELP ALTER TABLE COLUMN` in the MySql client command line for more help information.
For more detailed syntax and best practices used by Schema Change, see [ALTER TABLE COLUMN](../../../sql-manual/sql-reference/Data-Definition-Statements/Alter/ALTER-TABLE-COLUMN) command manual, you can also enter `HELP ALTER TABLE COLUMN` in the MySql client command line for more help information.
2 changes: 1 addition & 1 deletion docs/en/docs/data-operate/export/outfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ ERROR 1064 (HY000): errCode = 2, detailMessage = Open broker writer failed ...

## More Help

For more detailed syntax and best practices for using OUTFILE, please refer to the [OUTFILE](../../sql-manual/sql-reference/Data-Manipulation-Statements/OUTFILE) command manual, you can also More help information can be obtained by typing `HELP OUTFILE` at the command line of the MySql client.
For more detailed syntax and best practices for using OUTFILE, please refer to the [OUTFILE](../../../sql-manual/sql-reference/Data-Manipulation-Statements/OUTFILE) command manual, you can also More help information can be obtained by typing `HELP OUTFILE` at the command line of the MySql client.
Original file line number Diff line number Diff line change
Expand Up @@ -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) 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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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), 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.
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.
16 changes: 8 additions & 8 deletions docs/en/docs/data-table/basic-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Doris has built-in root and admin users, and the password is empty by default.
>
>admin user has ADMIN_PRIV and GRANT_PRIV privileges
>
>For specific instructions on permissions, please refer to [Permission Management](/docs/admin-manual/privilege-ldap/user-privilege)
>For specific instructions on permissions, please refer to [Permission Management](../../admin-manual/privilege-ldap/user-privilege)
After starting the Doris program, you can connect to the Doris cluster through root or admin users.
Use the following command to log in to Doris:
Expand Down Expand Up @@ -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).
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;
Expand Down Expand Up @@ -142,7 +142,7 @@ mysql> USE example_db;
Database changed
```

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

Expand Down Expand Up @@ -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) 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
Expand Down Expand Up @@ -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) 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

Expand Down Expand Up @@ -539,7 +539,7 @@ Materialized views are a space-for-time data analysis acceleration technique, an

At the same time, Doris can automatically ensure data consistency between materialized views and base tables, and automatically match the appropriate materialized view at query time, greatly reducing the cost of data maintenance for users and providing a consistent and transparent query acceleration experience for users.

For more information about materialized views, see [Materialized Views](../advanced/materialized-view)
For more information about materialized views, see [Materialized Views](../../advanced/materialized-view)

## Data table queries

Expand Down Expand Up @@ -656,12 +656,12 @@ mysql> select sum(table1.pv) from table1 join [shuffle] table2 where table1.site

When deploying multiple FE nodes, you can deploy a load balancing layer on top of multiple FEs to achieve high availability of Doris.

Please refer to [Load Balancing](...) for details on installation, deployment, and usage. /admin-manual/cluster-management/load-balancing)
Please refer to [Load Balancing](../../admin-manual/cluster-management/load-balancing) for details on installation, deployment, and usage.

## Data update and deletion

Doris supports deleting imported data in two ways. One way is to delete data by specifying a WHERE condition with a DELETE FROM statement. This method is more general and suitable for less frequent scheduled deletion tasks.

The other deletion method is for the Unique primary key unique model only, where the primary key rows to be deleted are imported by importing the data, and the final physical deletion of the data is performed internally by Doris using the delete tag bit. This deletion method is suitable for deleting data in a real-time manner.

For specific instructions on delete and update operations, see [Data Update](...). /data-operate/update-delete/update) documentation.
For specific instructions on delete and update operations, see [Data Update](../../data-operate/update-delete/update) documentation.
6 changes: 3 additions & 3 deletions docs/en/docs/ecosystem/doris-manager/space-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Enter the host IP to add a new host, or add it in batches.

1. Code package path

When deploying a cluster through Doris Manager, you need to provide the compiled Doris installation package. You can compile it yourself from the Doris source code, or use the officially provided [binary version](https://doris.apache.org/zh-CN/ downloads/downloads.html).
When deploying a cluster through Doris Manager, you need to provide the compiled Doris installation package. You can compile it yourself from the Doris source code.

`Doris Manager will pull the Doris installation package through http. If you need to build your own http service, please refer to the bottom of the document - Self-built http service`.

Expand Down Expand Up @@ -223,7 +223,7 @@ Reference: https://www.runoob.com/linux/nginx-install-setup.html
### 3 Configuration
1. Put the doris installation package in the nginx root directory
mv PALO-0.15.1-rc03-binary.tar.gz /usr/share/nginx/html
mv apache-doris-1.1.1-bin-x86.tar.gz /usr/share/nginx/html
2. Modify ngixn.conf
Expand All @@ -234,4 +234,4 @@ location /download {
````
Restart ngxin access after modification:
https://host:port/download/PALO-0.15.1-rc03-binary.tar.gz
https://host:port/download/apache-doris-1.1.1-bin-x86.tar.gz
4 changes: 2 additions & 2 deletions docs/en/docs/ecosystem/external-table/hive-bitmap-udf.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS `hive_table`(

Hive Bitmap UDF used in Hive/Spark,First, you need to compile fe to get hive-udf-jar-with-dependencies.jar.
Compilation preparation:If you have compiled the ldb source code, you can directly compile fe,If you have compiled the ldb source code, you can compile it directly. If you have not compiled the ldb source code, you need to manually install thrift,
Reference:[Setting Up dev env for FE](../../../community/developer-guide/fe-idea-dev) .
Reference:[Setting Up dev env for FE](/community/developer-guide/fe-idea-dev) .

```sql
--clone doris code
Expand Down Expand Up @@ -106,4 +106,4 @@ select k1,bitmap_union(uuid) from hive_bitmap_table group by k1

## Hive Bitmap import into Doris

see details: [Spark Load](../../data-operate/import/import-way/spark-load-manual) -> Basic operation -> Create load(Example 3: when the upstream data source is hive binary type table)
see details: [Spark Load](../../../data-operate/import/import-way/spark-load-manual) -> Basic operation -> Create load(Example 3: when the upstream data source is hive binary type table)
2 changes: 1 addition & 1 deletion docs/en/docs/ecosystem/external-table/multi-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ This function will be used as a supplement and enhancement to the previous exter

4. Drop Catalog

Both Database and Table in External Catalog are read-only. However, the catalog can be deleted (Internal Catalog cannot be deleted). An External Catalog can be dropped via the [DROP CATALOG](../../sql-manual/sql-reference/Data-Definition-Statements/Drop/DRIO-CATALOG.md) command.
Both Database and Table in External Catalog are read-only. However, the catalog can be deleted (Internal Catalog cannot be deleted). An External Catalog can be dropped via the [DROP CATALOG](../../../sql-manual/sql-reference/Data-Definition-Statements/Drop/DROP-CATALOG) command.

This operation will only delete the mapping information of the catalog in Doris, and will not modify or change the contents of any external data source.

Expand Down
4 changes: 2 additions & 2 deletions docs/en/docs/ecosystem/logstash.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ under the License.

This plugin is used to output data to Doris for logstash, use the HTTP protocol to interact with the Doris FE Http interface, and import data through Doris's stream load.

[Learn more about Doris Stream Load ](../data-operate/import/import-way/stream-load-manual)
[Learn more about Doris Stream Load ](../../data-operate/import/import-way/stream-load-manual)

[Learn more about Doris](/)

Expand Down Expand Up @@ -85,7 +85,7 @@ Configuration | Explanation
`label_prefix` | Import the identification prefix, the final generated ID is *{label\_prefix}\_{db}\_{table}\_{time_stamp}*


Load configuration:([Reference documents](../data-operate/import/import-way/stream-load-manual))
Load configuration:([Reference documents](../../data-operate/import/import-way/stream-load-manual))

Configuration | Explanation
--- | ---
Expand Down
2 changes: 1 addition & 1 deletion docs/en/docs/install/install-deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ BROKER does not currently have, nor does it need, priority\_networks. Broker's s

By default, doris is case-sensitive. If there is a need for case-insensitive table names, you need to set it before cluster initialization. The table name case sensitivity cannot be changed after cluster initialization is completed.

See the section on `lower_case_table_names` variables in [Variables](../advanced/variables) for details.
See the section on `lower_case_table_names` variables in [Variables](../../advanced/variables) for details.

## Cluster deployment

Expand Down
Loading

0 comments on commit c555987

Please sign in to comment.