This is an automated email from the ASF dual-hosted git repository. luzhijing 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 086c6ef9f33f [fix](Export) fix description of `data_consitency` (#482) 086c6ef9f33f is described below commit 086c6ef9f33f6a337c69da394d21fc948f68bd3f Author: Tiewei Fang <43782773+bepppo...@users.noreply.github.com> AuthorDate: Fri Mar 29 12:09:52 2024 +0800 [fix](Export) fix description of `data_consitency` (#482) --- .../sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md | 4 ++-- .../sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md b/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md index fd350ab0bf5d..cd25f54ae24c 100644 --- a/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md +++ b/docs/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md @@ -96,7 +96,7 @@ The bottom layer of the `Export` statement actually executes the `select...outfi - `with_bom`: The default is false. If it is set to true, the exported file is encoded in UTF8 with BOM (valid only for CSV-related file format). - - `data_consisteency`: can be set to` none` / ` partition`, default value is `none`. This parameter indicates the granularity at which the export table is shred, `none` represents tablets level, and` partition` represents partition level. + - `data_consistency`: can be set to` none` / `partition` , default value is `partition`. This parameter indicates the granularity at which the export table is shred, `none` represents tablets level, and` partition` represents partition level. - `timeout`: This is the timeout parameter of the export job, the default timeout is 2 hours, and the unit is seconds. @@ -349,7 +349,7 @@ WITH BROKER "broker_name" #### Concurrent Export - An Export job can be configured with the `parallelism` parameter to concurrently export data. The `parallelism` parameter specifies the number of threads to execute the `EXPORT Job`. Each thread is responsible for exporting a subset of the total tablets. + An Export job can be configured with the `parallelism` parameter to concurrently export data. The `parallelism` parameter specifies the number of threads to execute the `EXPORT Job`. When you set `"data_consistency" = "none"` , each thread is responsible for exporting a subset of the total tablets. The underlying execution logic of an `Export Job `is actually the `SELECT INTO OUTFILE` statement. Each thread specified by the `parallelism` parameter executes independent `SELECT INTO OUTFILE` statements. diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md index d7a582d958e8..07d71dc86772 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-reference/Data-Manipulation-Statements/Manipulation/EXPORT.md @@ -92,7 +92,7 @@ EXPORT - `with_bom`: 默认为false,若指定为true,则导出的文件编码为带有BOM的UTF8编码(只对csv相关的文件格式生效)。 - - `data_consistency`: 可以设置为 `none` / `partition` ,默认为 `none` 。指示以何种粒度切分导出表,`none` 代表 Tablets 级别,`partition`代表 Partition 级别。 + - `data_consistency`: 可以设置为 `none` / `partition` ,默认为 `partition` 。指示以何种粒度切分导出表,`none` 代表 Tablets 级别,`partition`代表 Partition 级别。 - `timeout`:导出作业的超时时间,默认为2小时,单位是秒。 @@ -336,7 +336,7 @@ WITH BROKER "broker_name" #### 并发执行 -一个 Export 作业可以设置`parallelism`参数来并发导出数据。`parallelism`参数实际就是指定执行 EXPORT 作业的线程数量。每一个线程会负责导出表的部分Tablets。 +一个 Export 作业可以设置`parallelism`参数来并发导出数据。`parallelism`参数实际就是指定执行 EXPORT 作业的线程数量。当设置`"data_consistency" = "none"`时,每一个线程会负责导出表的部分Tablets。 一个 Export 作业的底层执行逻辑实际上是`SELECT INTO OUTFILE`语句,`parallelism`参数设置的每一个线程都会去执行独立的`SELECT INTO OUTFILE`语句。 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org