Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature][Connector-V2]Jdbc chunk split add snapshotSplitColumn config #7794 #7840

Merged
merged 31 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
fc75772
[Improve][Sls] Add sls sink connector、e2e、doc
Oct 14, 2024
1576162
[Improve][Sls] Add sls sink connector、e2e、doc
Oct 14, 2024
1a636d3
Merge branch 'dev' of https://github.com/apache/seatunnel into dev
Oct 14, 2024
87d749a
[Improve][Sls] Update sls sink e2e code style
Oct 14, 2024
69bf03c
[Improve][Sls] Add sls sink license header
Oct 14, 2024
1165447
[Feature][Connector-V2]Jdbc chunk split add “snapshot.split.column” p…
Oct 15, 2024
0c2676b
Merge branch 'dev' of https://github.com/apache/seatunnel into dev
Oct 15, 2024
7165bad
[Feature][Connector-V2]Jdbc chunk split add “snapshot.split.column” p…
Oct 15, 2024
f5c5ee8
[Feature][Connector-V2]Update mysql-cdc doc with params snapshot.spl…
Oct 15, 2024
8a0b6ba
[Feature][Connector-V2]Update snapshot.split.column type with map and…
Oct 15, 2024
401723e
[Feature][Connector-V2]Remove local test run println
Oct 15, 2024
f9c973a
[Feature][Connector-V2] code style
Oct 15, 2024
83020fd
[Feature][Connector-V2] SourceConfig remove getSplitColumn
Oct 15, 2024
9a87c8b
[Feature][Connector-V2] uniq_key_f add id
Oct 15, 2024
7be5d6d
[Feature][Connector-V2] add split column type check
Oct 15, 2024
afd9cd9
[Feature][Connector-V2] add split column type check
Oct 15, 2024
2cae910
Update seatunnel-connectors-v2/connector-cdc/connector-cdc-base/src/m…
XenosK Oct 16, 2024
edc6f70
Update seatunnel-connectors-v2/connector-cdc/connector-cdc-base/src/m…
XenosK Oct 16, 2024
275520d
Update seatunnel-connectors-v2/connector-cdc/connector-cdc-base/src/m…
XenosK Oct 16, 2024
fe8f7d3
[Feature][Connector-V2] boolean isUniqueKey
Oct 16, 2024
768ca66
[Feature][Connector-V2] StringUtils.isNotEmpty
Oct 16, 2024
1973c18
[Feature][Connector-V2] code style
Oct 16, 2024
08bd831
[Feature][Connector-V2] &&!xx replace &&xx==false
Oct 16, 2024
047665f
[Feature][Connector-V2] use mao replace properties for split coiumn
Oct 21, 2024
733d823
[Feature][Connector-V2] update snapshot.split.column location
Oct 23, 2024
1388c01
[Feature][Connector-V2] update doc
Oct 23, 2024
fa9ec16
[Feature][Connector-V2] update snapshotSplitColumn config e2e
Nov 1, 2024
5b2056f
[Feature][Connector-V2] update snapshotSplitColumn doc
Nov 11, 2024
307a617
Merge branch 'dev' of https://github.com/apache/seatunnel into dev
Nov 11, 2024
59730d0
[Feature][Connector-V2] update unique column function
Nov 13, 2024
4556bc6
[Feature][Connector-V2] update unique column function
Nov 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en/connector-v2/source/MySQL-CDC.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,14 @@ When an initial consistent snapshot is made for large databases, your establishe

## Source Options

| Name | Type | Required | Default | Description |
| Name | Type | Required | Default | Description |
XenosK marked this conversation as resolved.
Show resolved Hide resolved
|------------------------------------------------|----------|----------|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| base-url | String | Yes | - | The URL of the JDBC connection. Refer to a case: `jdbc:mysql://localhost:3306:3306/test`. |
| username | String | Yes | - | Name of the database to use when connecting to the database server. |
| password | String | Yes | - | Password to use when connecting to the database server. |
| database-names | List | No | - | Database name of the database to monitor. |
| table-names | List | Yes | - | Table name of the database to monitor. The table name needs to include the database name, for example: `database_name.table_name` |
| table-names-config | List | No | - | Table config list. for example: [{"table": "db1.schema1.table1","primaryKeys":["key1"]}] |
| table-names-config | List | No | - | Table config list. for example: [{"table": "db1.schema1.table1","primaryKeys": ["key1"],"snapshotSplitColumn": "key2"}] |
| startup.mode | Enum | No | INITIAL | Optional startup mode for MySQL CDC consumer, valid enumerations are `initial`, `earliest`, `latest` and `specific`. <br/> `initial`: Synchronize historical data at startup, and then synchronize incremental data.<br/> `earliest`: Startup from the earliest offset possible.<br/> `latest`: Startup from the latest offset.<br/> `specific`: Startup from user-supplied specific offsets. |
| startup.specific-offset.file | String | No | - | Start from the specified binlog file name. **Note, This option is required when the `startup.mode` option used `specific`.** |
| startup.specific-offset.pos | Long | No | - | Start from the specified binlog file position. **Note, This option is required when the `startup.mode` option used `specific`.** |
Expand Down
4 changes: 2 additions & 2 deletions docs/en/connector-v2/source/Oracle-CDC.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ exit;

## Source Options

| Name | Type | Required | Default | Description |
| Name | Type | Required | Default | Description |
|------------------------------------------------|----------|----------|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| base-url | String | Yes | - | The URL of the JDBC connection. Refer to a case: `idbc:oracle:thin:datasource01:1523:xe`. |
| username | String | Yes | - | Name of the database to use when connecting to the database server. |
| password | String | Yes | - | Password to use when connecting to the database server. |
| database-names | List | No | - | Database name of the database to monitor. |
| schema-names | List | No | - | Schema name of the database to monitor. |
| table-names | List | Yes | - | Table name of the database to monitor. The table name needs to include the database name, for example: `database_name.table_name` |
| table-names-config | List | No | - | Table config list. for example: [{"table": "db1.schema1.table1","primaryKeys":["key1"]}] |
| table-names-config | List | No | - | Table config list. for example: [{"table": "db1.schema1.table1","primaryKeys": ["key1"],"snapshotSplitColumn": "key2"}] |
| startup.mode | Enum | No | INITIAL | Optional startup mode for Oracle CDC consumer, valid enumerations are `initial`, `earliest`, `latest` and `specific`. <br/> `initial`: Synchronize historical data at startup, and then synchronize incremental data.<br/> `earliest`: Startup from the earliest offset possible.<br/> `latest`: Startup from the latest offset.<br/> `specific`: Startup from user-supplied specific offsets. |
| startup.specific-offset.file | String | No | - | Start from the specified binlog file name. **Note, This option is required when the `startup.mode` option used `specific`.** |
| startup.specific-offset.pos | Long | No | - | Start from the specified binlog file position. **Note, This option is required when the `startup.mode` option used `specific`.** |
Expand Down
Loading
Loading