This is an automated email from the ASF dual-hosted git repository. fanjia pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 584c898048 [fix][doc] fix dead link (#6764)
584c898048 is described below
commit 584c89804834cd20bf35a2e30010804867b29f77
Author: Jarvis <[email protected]>
AuthorDate: Sun Apr 28 10:07:34 2024 +0800
[fix][doc] fix dead link (#6764)
---
docs/en/connector-v2/sink/Doris.md | 46 +++++++++++++++++++-------------------
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/docs/en/connector-v2/sink/Doris.md
b/docs/en/connector-v2/sink/Doris.md
index 453a410bbe..e3463d99e5 100644
--- a/docs/en/connector-v2/sink/Doris.md
+++ b/docs/en/connector-v2/sink/Doris.md
@@ -26,29 +26,29 @@ The internal implementation of Doris sink connector is
cached and imported by st
## Sink Options
-| Name | Type | Required | Default
|
Description
|
-|--------------------------------|---------|----------|------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| fenodes | String | Yes | -
| `Doris` cluster fenodes address, the format is `"fe_ip:fe_http_port,
..."`
|
-| query-port | int | No | 9030
| `Doris` Fenodes query_port
|
-| username | String | Yes | -
| `Doris` user username
|
-| password | String | Yes | -
| `Doris` user password
|
-| database | String | Yes | -
| The database name of `Doris` table, use `${database_name}` to represent
the upstream table name
|
-| table | String | Yes | -
| The table name of `Doris` table, use `${table_name}` to represent the
upstream table name
|
-| table.identifier | String | Yes | -
| The name of `Doris` table, it will deprecate after version 2.3.5,
please use `database` and `table` instead.
|
-| sink.label-prefix | String | Yes | -
| The label prefix used by stream load imports. In the 2pc scenario,
global uniqueness is required to ensure the EOS semantics of SeaTunnel.
|
-| sink.enable-2pc | bool | No | false
| Whether to enable two-phase commit (2pc), the default is false. For
two-phase commit, please refer to
[here](https://doris.apache.org/docs/dev/sql-manual/sql-reference/Data-Manipulation-Statements/Load/STREAM-LOAD).
|
-| sink.enable-delete | bool | No | -
| Whether to enable deletion. This option requires Doris table to enable
batch delete function (0.15+ version is enabled by default), and only supports
Unique model. you can get more detail at this
[link](https://doris.apache.org/docs/dev/data-operate/update-delete/batch-delete-manual)
|
-| sink.check-interval | int | No | 10000
| check exception with the interval while loading
|
-| sink.max-retries | int | No | 3
| the max retry times if writing records to database failed
|
-| sink.buffer-size | int | No | 256 * 1024
| the buffer size to cache data for stream load.
|
-| sink.buffer-count | int | No | 3
| the buffer count to cache data for stream load.
|
-| doris.batch.size | int | No | 1024
| the batch size of the write to doris each http request, when the row
reaches the size or checkpoint is executed, the data of cached will write to
server.
|
-| needs_unsupported_type_casting | boolean | No | false
| Whether to enable the unsupported type casting, such as Decimal64 to
Double
|
-| schema_save_mode | Enum | no |
CREATE_SCHEMA_WHEN_NOT_EXIST | the schema save mode, please refer to
`schema_save_mode` below
|
-| data_save_mode | Enum | no | APPEND_DATA
| the data save mode, please refer to `data_save_mode` below
|
-| save_mode_create_template | string | no | see below
| see below
|
-| custom_sql | String | no | -
| When data_save_mode selects CUSTOM_PROCESSING, you should fill in the
CUSTOM_SQL parameter. This parameter usually fills in a SQL that can be
executed. SQL will be executed before synchronization tasks.
|
-| doris.config | map | yes | -
| This option is used to support operations such as `insert`, `delete`,
and `update` when automatically generate sql,and supported formats.
|
+| Name | Type | Required | Default
|
Description
|
+|--------------------------------|---------|----------|------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
+| fenodes | String | Yes | -
| `Doris` cluster fenodes address, the format is `"fe_ip:fe_http_port,
..."`
|
+| query-port | int | No | 9030
| `Doris` Fenodes query_port
|
+| username | String | Yes | -
| `Doris` user username
|
+| password | String | Yes | -
| `Doris` user password
|
+| database | String | Yes | -
| The database name of `Doris` table, use `${database_name}` to represent
the upstream table name
|
+| table | String | Yes | -
| The table name of `Doris` table, use `${table_name}` to represent the
upstream table name
|
+| table.identifier | String | Yes | -
| The name of `Doris` table, it will deprecate after version 2.3.5,
please use `database` and `table` instead.
|
+| sink.label-prefix | String | Yes | -
| The label prefix used by stream load imports. In the 2pc scenario,
global uniqueness is required to ensure the EOS semantics of SeaTunnel.
|
+| sink.enable-2pc | bool | No | false
| Whether to enable two-phase commit (2pc), the default is false. For
two-phase commit, please refer to
[here](https://doris.apache.org/docs/dev/sql-manual/sql-statements/Data-Manipulation-Statements/Load/STREAM-LOAD/).
|
+| sink.enable-delete | bool | No | -
| Whether to enable deletion. This option requires Doris table to enable
batch delete function (0.15+ version is enabled by default), and only supports
Unique model. you can get more detail at this
[link](https://doris.apache.org/docs/dev/data-operate/delete/batch-delete-manual/)
|
+| sink.check-interval | int | No | 10000
| check exception with the interval while loading
|
+| sink.max-retries | int | No | 3
| the max retry times if writing records to database failed
|
+| sink.buffer-size | int | No | 256 * 1024
| the buffer size to cache data for stream load.
|
+| sink.buffer-count | int | No | 3
| the buffer count to cache data for stream load.
|
+| doris.batch.size | int | No | 1024
| the batch size of the write to doris each http request, when the row
reaches the size or checkpoint is executed, the data of cached will write to
server.
|
+| needs_unsupported_type_casting | boolean | No | false
| Whether to enable the unsupported type casting, such as Decimal64 to
Double
|
+| schema_save_mode | Enum | no |
CREATE_SCHEMA_WHEN_NOT_EXIST | the schema save mode, please refer to
`schema_save_mode` below
|
+| data_save_mode | Enum | no | APPEND_DATA
| the data save mode, please refer to `data_save_mode` below
|
+| save_mode_create_template | string | no | see below
| see below
|
+| custom_sql | String | no | -
| When data_save_mode selects CUSTOM_PROCESSING, you should fill in the
CUSTOM_SQL parameter. This parameter usually fills in a SQL that can be
executed. SQL will be executed before synchronization tasks.
|
+| doris.config | map | yes | -
| This option is used to support operations such as `insert`, `delete`,
and `update` when automatically generate sql,and supported formats.
|
### schema_save_mode[Enum]
