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

[Optimization] optimizing the construction of cdcsource out of order results in incorrect recovery from the savepoint #3349

Merged
Prev Previous commit
Next Next commit
Spotless Apply
  • Loading branch information
Zzm0809 authored and github-actions[bot] committed Apr 26, 2024
commit d1e16034cc9dccf4445896df27863551fbcd430b
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ Driver checkAndCreateSinkSchema(FlinkCDCConfig config, String schemaName) throws
driver.createSchema(schema);
}
sink.put(FlinkCDCConfig.SINK_DB, schema);
// todo: There is a bug that can cause the problem of URL duplicate concatenation of schema, for example: jdbc: mysql://localhost:3306/test?useSSL=false/test -1
// todo: There is a bug that can cause the problem of URL duplicate concatenation of schema, for example: jdbc:
// mysql://localhost:3306/test?useSSL=false/test -1
if (!url.contains(schema)) {
sink.put("url", url + "/" + schema);
}
Expand Down
Loading