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 903683be949 fix flinkcdc link (#598)
903683be949 is described below
commit 903683be9498396802ccf8667a6add8eb0181e95
Author: wudi <[email protected]>
AuthorDate: Sat May 4 08:52:13 2024 +0800
fix flinkcdc link (#598)
---
docs/ecosystem/flink-doris-connector.md | 8 ++++----
.../version-2.0/ecosystem/flink-doris-connector.md | 4 ++--
versioned_docs/version-2.0/ecosystem/flink-doris-connector.md | 4 ++--
versioned_docs/version-2.1/ecosystem/flink-doris-connector.md | 8 ++++----
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/docs/ecosystem/flink-doris-connector.md
b/docs/ecosystem/flink-doris-connector.md
index b9666394a3f..9f56d7b6d25 100644
--- a/docs/ecosystem/flink-doris-connector.md
+++ b/docs/ecosystem/flink-doris-connector.md
@@ -533,10 +533,10 @@ insert into doris_sink select id,name,bank,age from
cdc_mysql_source;
| --table-suffix | Same as above, the suffix name of the Doris table.
|
| --including-tables | For MySQL tables that need to be synchronized, you
can use "|" to separate multiple tables and support regular expressions. For
example --including-tables table1 |
| --excluding-tables | For tables that do not need to be synchronized,
the usage is the same as above. |
-| --mysql-conf | MySQL CDCSource configuration, for example
--mysql-conf hostname=127.0.0.1, you can find it
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html)
View all configurations MySQL-CDC, where
hostname/username/password/database-name is required. When the synchronized
library table contains a non-primary key table,
`scan.incremental.snapshot.chunk.key-column` must be set, and only one field of
non-null type can be selecte [...]
-| --oracle-conf | Oracle CDCSource configuration, for example
--oracle-conf hostname=127.0.0.1, you can find
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/oracle-cdc.html)
View all configurations Oracle-CDC, where
hostname/username/password/database-name/schema-name is required. |
-| --postgres-conf | Postgres CDCSource configuration, e.g.
--postgres-conf hostname=127.0.0.1, you can find
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/postgres-cdc.html)
View all configurations Postgres-CDC where
hostname/username/password/database-name/schema-name/slot.name is required. |
-| --sqlserver-conf | SQLServer CDCSource configuration, for example
--sqlserver-conf hostname=127.0.0.1, you can find it
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/sqlserver-cdc.html)
View all configurations SQLServer-CDC, where
hostname/username/password/database-name/schema-name is required. |
+| --mysql-conf | MySQL CDCSource configuration, for example
--mysql-conf hostname=127.0.0.1, you can find it
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/mysql-cdc/)
View all configurations MySQL-CDC, where
hostname/username/password/database-name is required. When the synchronized
library table contains a non-primary key table,
`scan.incremental.snapshot.chunk.key-column` must be set, and only one field of
non- [...]
+| --oracle-conf | Oracle CDCSource configuration, for example
--oracle-conf hostname=127.0.0.1, you can find
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/oracle-cdc/)
View all configurations Oracle-CDC, where
hostname/username/password/database-name/schema-name is required. |
+| --postgres-conf | Postgres CDCSource configuration, e.g.
--postgres-conf hostname=127.0.0.1, you can find
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/postgres-cdc/)
View all configurations Postgres-CDC where
hostname/username/password/database-name/schema-name/slot.name is required. |
+| --sqlserver-conf | SQLServer CDCSource configuration, for example
--sqlserver-conf hostname=127.0.0.1, you can find it
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/sqlserver-cdc/)
View all configurations SQLServer-CDC, where
hostname/username/password/database-name/schema-name is required. |
| --sink-conf | All configurations of Doris Sink can be found
[here](https://doris.apache.org/zh-CN/docs/dev/ecosystem/flink-doris-connector/#%E9%80%9A%E7%94%A8%E9%85%8D%E7%BD%AE%E9%A1%B9)
View the complete configuration items. |
| --table-conf | The configuration items of the Doris table(The
exception is table-buckets, non-properties attributes), that is, the content
contained in properties. For example `--table-conf replication_num=1`, and the
`--table-conf table-buckets="tbl1:10,tbl2:20,a.*:30,b.*:40,.*:50"` option
specifies the number of buckets for different tables based on the order of
regular expressions. If there is no match, the table is created with the
default setting of BUCKETS AUTO. |
| --ignore-default-value | Turn off the default value of synchronizing mysql
table structure. It is suitable for synchronizing mysql data to doris when the
field has a default value but the actual inserted data is null. Reference
[here](https://github.com/apache/doris-flink-connector/pull/152) |
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/ecosystem/flink-doris-connector.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/ecosystem/flink-doris-connector.md
index 1fe945299e9..20f69ed689a 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/ecosystem/flink-doris-connector.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/ecosystem/flink-doris-connector.md
@@ -455,9 +455,9 @@ insert into doris_sink select id,name from cdc_mysql_source;
- **--excluding-tables** 不需要同步的表,用法同上。
-- **--mysql-conf** MySQL CDCSource 配置,例如--mysql-conf
hostname=127.0.0.1,您可以在[这里](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html)查看所有配置
MySQL-CDC,其中 hostname/username/password/database-name 是必需的。
+- **--mysql-conf** MySQL CDCSource 配置,例如--mysql-conf
hostname=127.0.0.1,您可以在[这里](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/zh/docs/connectors/legacy-flink-cdc-sources/mysql-cdc/)查看所有配置
MySQL-CDC,其中 hostname/username/password/database-name 是必需的。
-- **--oracle-conf** Oracle CDCSource 配置,例如--oracle-conf
hostname=127.0.0.1,您可以在[这里](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/oracle-cdc.html)查看所有配置
Oracle-CDC,其中 hostname/username/password/database-name/schema-name 是必需的。
+- **--oracle-conf** Oracle CDCSource 配置,例如--oracle-conf
hostname=127.0.0.1,您可以在[这里](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/zh/docs/connectors/legacy-flink-cdc-sources/oracle-cdc/)查看所有配置
Oracle-CDC,其中 hostname/username/password/database-name/schema-name 是必需的。
- **--sink-conf** Doris Sink
的所有配置,可以在[这里](../../ecosystem/flink-doris-connector/#%E9%80%9A%E7%94%A8%E9%85%8D%E7%BD%AE%E9%A1%B9)查看完整的配置项。
diff --git a/versioned_docs/version-2.0/ecosystem/flink-doris-connector.md
b/versioned_docs/version-2.0/ecosystem/flink-doris-connector.md
index 3c14741f009..997004b7c10 100644
--- a/versioned_docs/version-2.0/ecosystem/flink-doris-connector.md
+++ b/versioned_docs/version-2.0/ecosystem/flink-doris-connector.md
@@ -444,8 +444,8 @@ insert into doris_sink select id,name from cdc_mysql_source;
- **--table-suffix** Same as above, the suffix name of the Doris table.
- **--including-tables** MySQL tables that need to be synchronized, you can
use "|" to separate multiple tables, and support regular expressions. For
example --including-tables table1|tbl.* is to synchronize table1 and all tables
beginning with tbl.
- **--excluding-tables** Tables that do not need to be synchronized, the usage
is the same as above.
-- **--mysql-conf** MySQL CDCSource configuration, eg --mysql-conf
hostname=127.0.0.1 , you can see all configuration MySQL-CDC in
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html),
where hostname/username/password/database-name is required.
-- **--oracle-conf** Oracle CDCSource configuration, for example --oracle-conf
hostname=127.0.0.1, you can view all configurations of Oracle-CDC in
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/oracle-cdc.html),
where hostname/username/password/database-name/schema-name is required.
+- **--mysql-conf** MySQL CDCSource configuration, eg --mysql-conf
hostname=127.0.0.1 , you can see all configuration MySQL-CDC in
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/mysql-cdc/),
where hostname/username/password/database-name is required.
+- **--oracle-conf** Oracle CDCSource configuration, for example --oracle-conf
hostname=127.0.0.1, you can view all configurations of Oracle-CDC in
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/oracle-cdc/),
where hostname/username/password/database-name/schema-name is required.
- **--sink-conf** All configurations of Doris Sink, you can view the complete
configuration items in
[here](https://doris.apache.org/zh-CN/docs/dev/ecosystem/flink-doris-connector/#%E9%80%9A%E7%94%A8%E9%85%8D%E7%BD%AE%E9%A1%B9).
- **--table-conf** The configuration item of the Doris table, that is, the
content contained in properties. For example --table-conf replication_num=1
- **--ignore-default-value** Turn off the default for synchronizing mysql
table structures. It is suitable for synchronizing mysql data to doris, the
field has a default value, but the actual inserted data is null. refer
to[#152](https://github.com/apache/doris-flink-connector/pull/152)
diff --git a/versioned_docs/version-2.1/ecosystem/flink-doris-connector.md
b/versioned_docs/version-2.1/ecosystem/flink-doris-connector.md
index baa33ca8c7f..e49ad1ae9bf 100644
--- a/versioned_docs/version-2.1/ecosystem/flink-doris-connector.md
+++ b/versioned_docs/version-2.1/ecosystem/flink-doris-connector.md
@@ -530,10 +530,10 @@ insert into doris_sink select id,name,bank,age from
cdc_mysql_source;
| --table-suffix | Same as above, the suffix name of the Doris table.
|
| --including-tables | For MySQL tables that need to be synchronized, you
can use "|" to separate multiple tables and support regular expressions. For
example --including-tables table1 |
| --excluding-tables | For tables that do not need to be synchronized,
the usage is the same as above. |
-| --mysql-conf | MySQL CDCSource configuration, for example
--mysql-conf hostname=127.0.0.1, you can find it
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html)
View all configurations MySQL-CDC, where
hostname/username/password/database-name is required. When the synchronized
library table contains a non-primary key table,
`scan.incremental.snapshot.chunk.key-column` must be set, and only one field of
non-null type can be selecte [...]
-| --oracle-conf | Oracle CDCSource configuration, for example
--oracle-conf hostname=127.0.0.1, you can find
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/oracle-cdc.html)
View all configurations Oracle-CDC, where
hostname/username/password/database-name/schema-name is required. |
-| --postgres-conf | Postgres CDCSource configuration, e.g.
--postgres-conf hostname=127.0.0.1, you can find
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/postgres-cdc.html)
View all configurations Postgres-CDC where
hostname/username/password/database-name/schema-name/slot.name is required. |
-| --sqlserver-conf | SQLServer CDCSource configuration, for example
--sqlserver-conf hostname=127.0.0.1, you can find it
[here](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/sqlserver-cdc.html)
View all configurations SQLServer-CDC, where
hostname/username/password/database-name/schema-name is required. |
+| --mysql-conf | MySQL CDCSource configuration, for example
--mysql-conf hostname=127.0.0.1, you can find it
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/mysql-cdc/)
View all configurations MySQL-CDC, where
hostname/username/password/database-name is required. When the synchronized
library table contains a non-primary key table,
`scan.incremental.snapshot.chunk.key-column` must be set, and only one field of
non- [...]
+| --oracle-conf | Oracle CDCSource configuration, for example
--oracle-conf hostname=127.0.0.1, you can find
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/oracle-cdc/)
View all configurations Oracle-CDC, where
hostname/username/password/database-name/schema-name is required. |
+| --postgres-conf | Postgres CDCSource configuration, e.g.
--postgres-conf hostname=127.0.0.1, you can find
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/postgres-cdc/)
View all configurations Postgres-CDC where
hostname/username/password/database-name/schema-name/slot.name is required. |
+| --sqlserver-conf | SQLServer CDCSource configuration, for example
--sqlserver-conf hostname=127.0.0.1, you can find it
[here](https://nightlies.apache.org/flink/flink-cdc-docs-release-3.0/docs/connectors/legacy-flink-cdc-sources/sqlserver-cdc/)
View all configurations SQLServer-CDC, where
hostname/username/password/database-name/schema-name is required. |
| --sink-conf | All configurations of Doris Sink can be found
[here](https://doris.apache.org/zh-CN/docs/dev/ecosystem/flink-doris-connector/#%E9%80%9A%E7%94%A8%E9%85%8D%E7%BD%AE%E9%A1%B9)
View the complete configuration items. |
| --table-conf | The configuration items of the Doris table(The
exception is table-buckets, non-properties attributes), that is, the content
contained in properties. For example `--table-conf replication_num=1`, and the
`--table-conf table-buckets="tbl1:10,tbl2:20,a.*:30,b.*:40,.*:50"` option
specifies the number of buckets for different tables based on the order of
regular expressions. If there is no match, the table is created with the
default setting of BUCKETS AUTO. |
| --ignore-default-value | Turn off the default value of synchronizing mysql
table structure. It is suitable for synchronizing mysql data to doris when the
field has a default value but the actual inserted data is null. Reference
[here](https://github.com/apache/doris-flink-connector/pull/152) |
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]