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

✨ Source MongoDB Internal POC: CDC State Handling #29763

Merged

Conversation

jdpgrailsdev
Copy link
Contributor

What

  • Add state handling/management for both initial snapshots and incremental syncs as part of CDC for MongoDB

How

  • Implement the CdcStateHandler interface so that state is updated as part of the CDC incremental sync
  • Add a state manager based on the relational database state management code that can be used to keep track of state as both initial snapshots are performed and as part of incremental syncs
  • Refactor existing code to use the state manager for state tracking

Recommended reading order

  1. MongoDbStateManager.java
  2. MongoDbCdcStateHandler.java
  3. MongoDbCdcState.java

This PR does not completely hook in the state management for CDC. That will come in a later PR when we integrate all the CDC bits together to actually facilitate a CDC-based sync. For now, I confirmed that all unit tests validation state pass, as well as acceptance tests that perform incremental syncs and validate state messages pass. I also put some TODO's in place where we need to come back and fix once we integrate this.

I opted to not depend on the relational DB package where the current state management code lives. That code is very coupled to relational database concepts, which do not really apply to MongoDB.

Finally, this PR is based off of #29730 (you can ignore the metadata injection changes -- I needed some changes from that PR to implement this code) and supersedes #29678, which will be closed in favor of this PR.

@github-actions
Copy link
Contributor

github-actions bot commented Aug 23, 2023

Before Merging a Connector Pull Request

Wow! 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:

  • PR name follows PR naming conventions
  • Breaking changes are considered. If a Breaking Change is being introduced, ensure an Airbyte engineer has created a Breaking Change Plan.
  • Connector version has been incremented in the Dockerfile and metadata.yaml according to our Semantic Versioning for Connectors guidelines
  • You've updated the connector's metadata.yaml file any other relevant changes, including a breakingChanges entry for major version bumps. See metadata.yaml docs
  • Secrets in the connector's spec are annotated with airbyte_secret
  • All documentation files are up to date. (README.md, bootstrap.md, docs.md, etc...)
  • Changelog updated in docs/integrations/<source or destination>/<name>.md with an entry for the new version. See changelog example
  • Migration guide updated in docs/integrations/<source or destination>/<name>-migrations.md with an entry for the new version, if the version is a breaking change. See migration guide example
  • If set, you've ensured the icon is present in the platform-internal repo. (Docs)

If the checklist is complete, but the CI check is failing,

  1. Check for hidden checklists in your PR description

  2. Toggle the github label checklist-action-run on/off to re-run the checklist CI.

@github-actions
Copy link
Contributor

source-mssql test report (commit 3ab0fe24d6) - ❌

⏲️ Total pipeline duration: 18mn06s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mssql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mssql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mssql test

@github-actions
Copy link
Contributor

github-actions bot commented Aug 23, 2023

Coverage report for source-postgres

File Coverage [100%] 🍏
PostgresCdcConnectorMetadataInjector.java 100% 🍏
Total Project Coverage 70.2% 🍏

@github-actions
Copy link
Contributor

source-mysql test report (commit 3ab0fe24d6) - ❌

⏲️ Total pipeline duration: 33mn59s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mysql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mysql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mysql test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 3ab0fe24d6) - ❌

⏲️ Total pipeline duration: 07mn32s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-postgres test report (commit 3ab0fe24d6) - ❌

⏲️ Total pipeline duration: 24mn48s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-postgres docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-postgres/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-postgres test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 2f2fe533eb) - ❌

⏲️ Total pipeline duration: 08mn28s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mysql test report (commit 2f2fe533eb) - ❌

⏲️ Total pipeline duration: 16mn52s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mysql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mysql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mysql test

@github-actions
Copy link
Contributor

source-postgres test report (commit 2f2fe533eb) - ❌

⏲️ Total pipeline duration: 34mn31s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-postgres docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-postgres/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-postgres test

@github-actions
Copy link
Contributor

source-mssql test report (commit 2f2fe533eb) - ❌

⏲️ Total pipeline duration: 18mn35s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mssql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mssql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mssql test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 9317ccfd6d) - ❌

⏲️ Total pipeline duration: 09mn20s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mssql test report (commit 9317ccfd6d) - ❌

⏲️ Total pipeline duration: 36mn50s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mssql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mssql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mssql test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 9517f34860) - ❌

⏲️ Total pipeline duration: 09mn15s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mysql test report (commit cbf5f095e8) - ❌

⏲️ Total pipeline duration: 17mn44s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mysql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mysql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mysql test

@github-actions
Copy link
Contributor

source-postgres test report (commit cbf5f095e8) - ❌

⏲️ Total pipeline duration: 03mn34s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-postgres docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-postgres/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-postgres test

Copy link
Contributor

@jpefaur jpefaur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I understand what's going on here. I'm going to read it again tomorrow morning, but feel free to merge

Copy link
Contributor

@subodh1810 subodh1810 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few questions/concerns :

  1. Need to understand if swallowing exception in the hasNext method of MongoDbStateIterator is the right thing to do?
  2. How would we identify that initial sync for a given stream is complete. I dont see any special state emitted for streams that complete initial sync to denote now we just need to process the change streams for these streams. Which leads to the next question is that I dont see any specific logic to identify which streams only need to go through the initial sync. Right now all the streams present in the catalog go through the intial sync all the time.
  3. Other DBs emit state at a frequency of every 15 minutes or once more than 10K records are emiited. May be we could do the same thing?

if (!stateMessages.isEmpty()) {
if (stateMessages.size() == 1) {
final AirbyteStateMessage stateMessage = stateMessages.get(0);
stateManager.updateCdcState(Jsons.object(stateMessage.getGlobal().getSharedState(), MongoDbCdcState.class));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't the CDC state supposed to be the debezium state? How will it be de-serialised to MongoDbCdcState

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MongoDbCdcState holds the data extracted from the Debezium offset map. There is code to handle the translation to/from the offset map and MongoDbCdcState that is not in this PR, but will be in the PR that integrates all the bits together.

@jdpgrailsdev jdpgrailsdev changed the base branch from master to jonathan/cdc-metadata-injector August 25, 2023 12:51
@jdpgrailsdev
Copy link
Contributor Author

Few questions/concerns :

  1. Need to understand if swallowing exception in the hasNext method of MongoDbStateIterator is the right thing to do?
  2. How would we identify that initial sync for a given stream is complete. I dont see any special state emitted for streams that complete initial sync to denote now we just need to process the change streams for these streams. Which leads to the next question is that I dont see any specific logic to identify which streams only need to go through the initial sync. Right now all the streams present in the catalog go through the intial sync all the time.
  3. Other DBs emit state at a frequency of every 15 minutes or once more than 10K records are emiited. May be we could do the same thing?

@subodh1810 I think the answer to #1 is that it is the correct thing to do, but I will defer to @colesnodgrass as he wrote that code. As for #2 and #3, those are out of scope of this PR. The intent here is to just set up the initial structure. We will need to handle those two cases when we integrate this with the iterator, which itself will probably need to move/change to be part of the code that sets up the iterators for the CDC sync given the state.

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit af7feba553) - ❌

⏲️ Total pipeline duration: 09mn16s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 291f6ff50c) - ❌

⏲️ Total pipeline duration: 09mn20s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 291f6ff50c) - ❌

⏲️ Total pipeline duration: 08mn37s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mysql test report (commit 28e4dc0380) - ❌

⏲️ Total pipeline duration: 35mn49s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mysql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mysql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mysql test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 28e4dc0380) - ❌

⏲️ Total pipeline duration: 07mn37s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-postgres test report (commit 28e4dc0380) - ❌

⏲️ Total pipeline duration: 33mn38s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-postgres docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-postgres/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-postgres test

@github-actions
Copy link
Contributor

source-mssql test report (commit 28e4dc0380) - ❌

⏲️ Total pipeline duration: 6.52s

Step Result

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mssql test

Copy link
Contributor

@subodh1810 subodh1810 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Again lets make sure that the tests for all the other CDC connectors are green.

Also as discussed over chat I pushed a commit to disable the following methods

  @Override
  public AirbyteMessage saveStateAfterCompletionOfSnapshotOfNewStreams() {
    throw new RuntimeException("Debezium is not used to carry out the snapshot of tables.");
  }

  @Override
  public boolean isCdcCheckpointEnabled() {
    return false;
  }

The method saveStateAfterCompletionOfSnapshotOfNewStreams is not required cause we wont be using Debezium for initial snapshot of streams.

The method isCdcCheckpointEnabled requires the following methods in CdcTargetPosition to be implemented as well. So an item on the TODO list to implement these methods in the future PR and then we can set the isCdcCheckpointEnabled to true.

default boolean isEventAheadOffset(final Map<String, String> offset, final ChangeEventWithMetadata event) {
   return false;
 }

and

  default boolean isSameOffset(final Map<String, String> offsetA, final Map<String, String> offsetB) {
    return true;
  }

import java.util.concurrent.atomic.AtomicLong;
import org.bson.BsonTimestamp;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not required right?

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 971af014e2) - ❌

⏲️ Total pipeline duration: 09mn23s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@github-actions
Copy link
Contributor

source-mssql test report (commit 971af014e2) - ❌

⏲️ Total pipeline duration: 6.25s

Step Result

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mssql test

@github-actions
Copy link
Contributor

source-mysql test report (commit 971af014e2) - ❌

⏲️ Total pipeline duration: 17mn01s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mysql docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mysql/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mysql test

@github-actions
Copy link
Contributor

source-postgres test report (commit 971af014e2) - ❌

⏲️ Total pipeline duration: 11mn12s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-postgres docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-postgres/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-postgres test

@github-actions
Copy link
Contributor

source-mongodb-internal-poc test report (commit 9a13b5fae7) - ❌

⏲️ Total pipeline duration: 09mn06s

Step Result
Java Connector Unit Tests
Build connector tar
Build source-mongodb-internal-poc docker image for platform linux/x86_64
Java Connector Integration Tests
Acceptance tests
Validate airbyte-integrations/connectors/source-mongodb-internal-poc/metadata.yaml
Connector version semver check
Connector version increment check
QA checks

🔗 View the logs here

☁️ View runs for commit in Dagger Cloud

Please note that tests are only run on PR ready for review. Please set your PR to draft mode to not flood the CI engine and upstream service on following commits.
You can run the same pipeline locally on this branch with the airbyte-ci tool with the following command

airbyte-ci connectors --name=source-mongodb-internal-poc test

@jdpgrailsdev jdpgrailsdev merged commit da46171 into jonathan/cdc-metadata-injector Aug 28, 2023
@jdpgrailsdev jdpgrailsdev deleted the jonathan/cdc-state-handler branch August 28, 2023 15:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants