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 Recharge: migrate to Low-Code #35450

Merged
merged 64 commits into from Mar 28, 2024

Conversation

bazarnov
Copy link
Collaborator

@bazarnov bazarnov commented Feb 20, 2024

What

Resolving: https://github.com/airbytehq/airbyte-internal-issues/issues/2917

How

  • by using the airbyte-cdk.declarative (Low-code)
  • extended schemas with missing properties
  • added unit_tests for python-based stream orders to cover it's implementation
  • added basic integration tests to cover the empty streams:
    • collections
    • discounts
    • onetimes
  • updated expected records, since there are changes to schemas (more fields than before)

🚨 User Impact 🚨

No breaking changes for this Migration.

@bazarnov bazarnov self-assigned this Feb 20, 2024
Copy link

vercel bot commented Feb 20, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
airbyte-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 20, 2024 8:41pm

Copy link
Contributor

github-actions bot commented Feb 20, 2024

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.

Copy link
Collaborator

@lazebnyi lazebnyi left a comment

Choose a reason for hiding this comment

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

lgtm

@bazarnov
Copy link
Collaborator Author

I was also able to remove the CustomComponents used previously, because now the CDK allows to process the cursor_field values correctly, given the top priority to the actual RECORD cursor value! Nice!

Copy link
Contributor

@maxi297 maxi297 left a comment

Choose a reason for hiding this comment

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

I had less time than I would have liked to review this again. Here are some comments:

  • I could not tests the following streams as there is no test data in our sandbox environment

    • collections
    • discounts
    • onetimes
  • I get 3 records for the manifest version instead of 45 in the current one for the stream products. It seems like it is duplication because the API does not consider the updated_at_min and updated_at_max. Can you confirm that? I could now find if I had raised this issue or not in the previous round of review

@octavia-squidington-iv octavia-squidington-iv requested a review from a team March 20, 2024 20:13
@bazarnov
Copy link
Collaborator Author

@maxi297 Regarding your comment above:

I could not tests the following streams as there is no test data in our sandbox environment
collections, discounts, sometimes

These are not populated in for the Sandbox, and are covered with Integration Tests.

I get 3 records for the manifest version instead of 45 in the current one for the stream products. It seems like it is duplication because the API does not consider the updated_at_min and updated_at_max. Can you confirm that? I could now find if I had raised this issue or not in the previous round of review

I confirm these are the duplicates. There are 3 records for the product stream, which is a Full-refresh stream.

Copy link
Contributor

@maxi297 maxi297 left a comment

Choose a reason for hiding this comment

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

Cool! With the confirmation that it is duplication, LGTM!

@bazarnov
Copy link
Collaborator Author

Cool! With the confirmation that it is duplication, LGTM!

This is the proof from the sandbox account:
Screenshot 2024-03-21 at 13 22 21

@bazarnov bazarnov removed the breaking-change Don't merge me unless you are ready. label Mar 21, 2024
@@ -2,49 +2,49 @@
{
"type": "STREAM",
"stream": {
"stream_state": { "updated_at": "2050-05-18T00:00:00" },
"stream_state": { "updated_at": "2050-05-18T00:00:00Z" },
Copy link
Collaborator

Choose a reason for hiding this comment

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

It is look like breaking change as you change state format

@bazarnov
Copy link
Collaborator Author

The STATE output from the source-recharge 1.1.6 (current master version):

[
    {
        "subscriptions": {
            "updated_at": "2023-05-13T04:07:32+00:00"
        },
        "addresses": {
            "updated_at": "2023-05-13T04:07:34+00:00"
        },
        "charges": {
            "updated_at": "2023-05-13T04:16:51+00:00"
        },
        "collections": {},
        "customers": {
            "updated_at": "2023-05-13T04:16:36+00:00"
        },
        "onetimes": {},
        "discounts": {
            "updated_at": "2021-05-13T12:40:17+00:00"
        },
        "orders": {
            "updated_at": "2023-05-13T04:16:51+00:00"
        },
        "products": {},
        "shop": {},
        "metafields": {},
    }
]

The STATE output from the source-recharge 1.2.0 (low-code migrated version):

[
    {
        "subscriptions": {
            "updated_at": "2023-05-13T04:07:32+00:00"
        },
        "addresses": {
            "updated_at": "2023-05-13T04:07:34+00:00"
        },
        "charges": {
            "updated_at": "2023-05-13T04:16:51+00:00"
        },
        "collections": {},
        "customers": {
            "updated_at": "2023-05-13T04:16:36+00:00"
        },
        "onetimes": {},
        "discounts": {
            "updated_at": "2021-05-13T12:40:17+00:00"
        },
        "orders": {
            "updated_at": "2023-05-13T04:16:51+00:00"
        },
        "products": {},
        "shop": {},
        "metafields": {}
    }
]

I could be wrong, but I don't observe the difference you've found @lazebnyi. Could you please be more specific about where the breaking change takes place?

Copy link
Collaborator

@lazebnyi lazebnyi left a comment

Choose a reason for hiding this comment

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

lgtm

as we have two cursor_datetime_formats

@lazebnyi lazebnyi merged commit 85d2469 into master Mar 28, 2024
38 checks passed
@lazebnyi lazebnyi deleted the baz/source/recharge/migrate-to-low-code branch March 28, 2024 20:13
nurikk pushed a commit to nurikk/airbyte that referenced this pull request Apr 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/connectors Connector related issues area/documentation Improvements or additions to documentation connectors/source/recharge low-code-migration This connector has been migrated to the low-code CDK
Projects
Status: Implementation in progress
Development

Successfully merging this pull request may close these issues.

None yet

4 participants