You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/docs/connectors/legacy-flink-cdc-sources/overview.md
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,10 +24,12 @@ specific language governing permissions and limitations
24
24
under the License.
25
25
-->
26
26
27
-
# CDC Connectors for Apache Flink
27
+
# Legacy CDC sources for Apache Flink
28
28
29
-
CDC Connectors for Apache Flink<sup>®</sup> is a set of source connectors for <ahref="https://flink.apache.org/">Apache Flink<sup>®</sup></a>, ingesting changes from different databases using change data capture (CDC).
30
-
The CDC Connectors for Apache Flink<sup>®</sup> integrate Debezium as the engine to capture data changes. So it can fully leverage the ability of Debezium. See more about what is [Debezium](https://github.com/debezium/debezium).
29
+
Flink CDC sources is a set of source connectors for <ahref="https://flink.apache.org/">Apache Flink<sup>®</sup></a>, ingesting changes from different databases using change data capture (CDC).
30
+
Some CDC sources integrate Debezium as the engine to capture data changes. So it can fully leverage the ability of Debezium. See more about what is [Debezium](https://github.com/debezium/debezium).
31
+
32
+
You can also read [tutorials]({{< ref "docs/connectors/legacy-flink-cdc-sources/tutorials/mysql-postgres-tutorial" >}}) about how to use these sources.
Copy file name to clipboardExpand all lines: docs/content/docs/connectors/mysql.md
+11-15Lines changed: 11 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -24,16 +24,15 @@ specific language governing permissions and limitations
24
24
under the License.
25
25
-->
26
26
27
-
# MySQL CDC Pipeline Connector
27
+
# MySQL Connector
28
28
29
-
The MySQL CDC Pipeline Connector allows for reading snapshot data and incremental data from MySQL database and provides end-to-end full-database data synchronization capabilities.
30
-
This document describes how to setup the MySQL CDC Pipeline connector.
29
+
MySQL connector allows reading snapshot data and incremental data from MySQL database and provides end-to-end full-database data synchronization capabilities.
30
+
This document describes how to setup the MySQL connector.
31
31
32
32
33
-
How to create Pipeline
34
-
----------------
33
+
## Example
35
34
36
-
The pipeline for reading data from MySQL and sink to Doris can be defined as follows:
35
+
An example of the pipeline for reading data from MySQL and sink to Doris can be defined as follows:
37
36
38
37
```yaml
39
38
source:
@@ -58,8 +57,7 @@ pipeline:
58
57
parallelism: 4
59
58
```
60
59
61
-
Pipeline Connector Options
62
-
----------------
60
+
## Connector Options
63
61
64
62
<div class="highlight">
65
63
<table class="colwidths-auto docutils">
@@ -245,8 +243,7 @@ Pipeline Connector Options
245
243
</table>
246
244
</div>
247
245
248
-
Startup Reading Position
249
-
--------
246
+
## Startup Reading Position
250
247
251
248
The config option `scan.startup.mode` specifies the startup mode for MySQL CDC consumer. The valid enumerations are:
252
249
@@ -259,16 +256,15 @@ The config option `scan.startup.mode` specifies the startup mode for MySQL CDC c
259
256
- `timestamp`: Skip snapshot phase and start reading binlog events from a specific timestamp.
Copy file name to clipboardExpand all lines: docs/content/docs/connectors/starrocks.md
+10-12Lines changed: 10 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -24,17 +24,16 @@ specific language governing permissions and limitations
24
24
under the License.
25
25
-->
26
26
27
-
# StarRocks Pipeline Connector
27
+
# StarRocks Connector
28
28
29
-
The StarRocks Pipeline connector can be used as the *Data Sink* of the pipeline, and write data to [StarRocks](https://github.com/StarRocks/starrocks). This document describes how to set up the StarRocks Pipeline connector.
29
+
StarRocks connector can be used as the *Data Sink* of the pipeline, and write data to [StarRocks](https://github.com/StarRocks/starrocks). This document describes how to set up the StarRocks connector.
30
30
31
31
## What can the connector do?
32
32
* Create table automatically if not exist
33
33
* Schema change synchronization
34
34
* Data synchronization
35
35
36
-
How to create Pipeline
37
-
----------------
36
+
## Example
38
37
39
38
The pipeline for reading data from MySQL and sink to StarRocks can be defined as follows:
40
39
@@ -62,8 +61,8 @@ pipeline:
62
61
parallelism: 2
63
62
```
64
63
65
-
Pipeline Connector Options
66
-
----------------
64
+
## Connector Options
65
+
67
66
<div class="highlight">
68
67
<table class="colwidths-auto docutils">
69
68
<thead>
@@ -220,8 +219,8 @@ Pipeline Connector Options
220
219
</table>
221
220
</div>
222
221
223
-
Usage Notes
224
-
--------
222
+
223
+
## Usage Notes
225
224
226
225
* Only support StarRocks primary key table, so the source table must have primary keys.
227
226
@@ -244,15 +243,14 @@ Usage Notes
244
243
to write data to StarRocks. You can see [sink documentation](https://github.com/StarRocks/starrocks-connector-for-apache-flink/blob/main/docs/content/connector-sink.md)
0 commit comments