Skip to content

Commit

Permalink
[FLINK-FLINK-36115][pipeline-connector][mysql] add scan.incremental.n…
Browse files Browse the repository at this point in the history
…ewly-added-table.enabled option to Allow to scan newly table DDL during incremental reading stage.
  • Loading branch information
lvyanquan committed Aug 21, 2024
1 parent 5de2c45 commit 7173b46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/docs/connectors/pipeline-connectors/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ pipeline:
<td>Boolean</td>
<td>In binlog reading stage, whether to scan the ddl and dml statements of newly added tables or not, by default is false. <br>
The difference between scan.newly-added-table.enabled and scan.binlog.newly-added-table.enabled options is: <br>
scan.newly-added-table.enabled: do re-snapshot & binlog-reading for newly added table when restore; <br>
scan.newly-added-table.enabled: do re-snapshot & binlog-reading for newly added table when restored; <br>
scan.binlog.newly-added-table.enabled: only do binlog-reading for newly added table during binlog reading phase.
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,6 @@ public class MySqlDataSourceOptions {
.withDescription(
"In binlog reading stage, whether to scan the ddl and dml statements of newly added tables or not, by default is false. \n"
+ "The difference between scan.newly-added-table.enabled and scan.binlog.newly-added-table.enabled options is: \n"
+ "scan.newly-added-table.enabled: do re-snapshot & binlog-reading for newly added table when restore; \n"
+ "scan.newly-added-table.enabled: do re-snapshot & binlog-reading for newly added table when restored; \n"
+ "scan.binlog.newly-added-table.enabled: only do binlog-reading for newly added table during binlog reading phase.");
}

0 comments on commit 7173b46

Please sign in to comment.