-
Couldn't load subscription status.
- Fork 2.1k
[FLINK-34864][cdc-connector-mysql] Add the IgnoreNoPrimaryKeyTable parameter to skip tables without primary keys in multi-table synchronization #4027
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
12cca55
75aebed
c7e38e5
43ed6c5
67e9891
57aceab
d4bc59a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -293,4 +293,15 @@ public class MySqlSourceOptions { | |
| .defaultValue(false) | ||
| .withDescription( | ||
| "Whether to assign the unbounded chunks first during snapshot reading phase. This might help reduce the risk of the TaskManager experiencing an out-of-memory (OOM) error when taking a snapshot of the largest unbounded chunk. Defaults to false."); | ||
|
|
||
| @Experimental | ||
| public static final ConfigOption<Boolean> IGNORE_NO_PRIMARY_KEY_TABLE = | ||
| ConfigOptions.key("ignore-no-primary-key-table") | ||
| .booleanType() | ||
| .defaultValue(false) | ||
| .withDescription( | ||
| "Whether to ignore tables without primary key. When enabled, the connector will skip tables " | ||
| + "that don't have a primary key. By default these tables will be processed, but for some " | ||
| + "scenarios it may be desirable to ignore them since tables without primary keys " | ||
| + "might cause performance issues during incremental snapshot."); | ||
|
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.