-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
java CDK, source-postgres: speed up tests involving debezium #31924
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Before Merging a Connector Pull RequestWow! What a great pull request you have here! 🎉 To merge this PR, ensure the following has been done/considered for each connector added or updated:
If the checklist is complete, but the CI check is failing,
|
319cc16
to
691b3a0
Compare
…t_seconds` mutation
...dk/db-sources/src/main/java/io/airbyte/cdk/integrations/debezium/AirbyteDebeziumHandler.java
Show resolved
Hide resolved
...ces/src/main/java/io/airbyte/cdk/integrations/debezium/internals/DebeziumRecordIterator.java
Outdated
Show resolved
Hide resolved
.../src/main/java/io/airbyte/cdk/integrations/debezium/internals/DebeziumShutdownProcedure.java
Show resolved
Hide resolved
.../src/main/java/io/airbyte/cdk/integrations/debezium/internals/DebeziumShutdownProcedure.java
Outdated
Show resolved
Hide resolved
.../java/io/airbyte/cdk/integrations/debezium/internals/postgres/PostgresDebeziumStateUtil.java
Show resolved
Hide resolved
@@ -9,7 +9,7 @@ plugins { | |||
airbyteJavaConnector { | |||
cdkVersionRequired = '0.1.13' | |||
features = ['db-sources'] | |||
useLocalCdk = false | |||
useLocalCdk = true |
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.
reminder to turn back to false prior to merging
...es/src/main/java/io/airbyte/integrations/source/postgres/cdc/PostgresCdcCtidInitializer.java
Show resolved
Hide resolved
merging master to get around annoying dockerhub limitations |
Approve-and-merge failed with |
I merged the wrong PR 😬 |
This PR includes three meaningful, distinct changes which each improve test execution latency when relying on the Debezium engine. These changes aim to have limited impact in a production setting.
Fixes #31828.