-
Notifications
You must be signed in to change notification settings - Fork 334
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
[Bitsail][Connector] support pg cdc #402
base: master
Are you sure you want to change the base?
Conversation
2d50885
to
d8c6ab4
Compare
@@ -88,6 +88,10 @@ interface BaseReaderOptions { | |||
key(READER_PREFIX + "db_name") | |||
.noDefaultValue(String.class); | |||
|
|||
ConfigOption<String> CONNECTION_TIMEZONE = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should move to CDC Module
not in Common Module
@@ -33,7 +33,6 @@ | |||
</properties> | |||
|
|||
<dependencies> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No changes?
@@ -23,7 +23,7 @@ | |||
|
|||
public interface SourceReader<T, SplitT extends SourceSplit> extends Serializable, AutoCloseable { | |||
|
|||
void start(); | |||
void start() throws Exception; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When we need add exception throw in here?
Hi xubo123, thanks for your contribution to the BitSail community. we build a group for all contributor.Here is the QR code. If it expires, you can add WeChat ID 13651994967. Look forward to your arrival! @xubo123 |
Signed-off-by:
Pre-Checklist
Purpose
Approaches
implement emitting change event based on debezium utils
Related Issues
None
New Behavior (screenshots if needed)
N/A