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

task(connector-sdk): Adding example for composite primary key operations #90

Merged
merged 10 commits into from
Apr 2, 2025

Conversation

fivetran-sahilkhirwal
Copy link
Collaborator

@fivetran-sahilkhirwal fivetran-sahilkhirwal commented Mar 10, 2025

closes https://fivetran.height.app/T-898799

Example description

  • It has examples for update and delete operations when the primary key is composite ( contains more than one columns)
    Screenshot 2025-03-18 at 12 06 39
    Screenshot 2025-03-18 at 12 06 57

Verification of the connector

Screenshot 2025-04-03 at 00 55 02
Screenshot 2025-04-03 at 00 55 15
Screenshot 2025-04-03 at 00 52 47
Screenshot 2025-04-03 at 00 53 45

Copy link

height bot commented Mar 10, 2025

This pull request has been linked to and will mark 1 task as "Done" when merged:

💡Tip: You can link multiple Height tasks to a pull request.

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

PR Overview

This PR adds two complete examples demonstrating how to handle composite primary key operations in Fivetran connectors—one for update operations and one for delete operations—and updates the documentation accordingly.

  • Adds an update example that shows how to perform composite key updates on the product_inventory table.
  • Adds a delete example that illustrates composite key deletion on the sample_table table.
  • Updates the README to document the composite primary key approaches used in both examples.

Reviewed Changes

File Description
update_example/connector.py Introduces update operations using composite keys on product_inventory.
delete_example/connector.py Demonstrates delete operations using composite keys on sample_table.
README.md Documents examples and explains composite key operations for update and delete scenarios.

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (2)

examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py:160

  • [nitpick] There appear to be multiple yield statements for op.checkpoint(state) (one earlier and another at the end). Consider removing the redundant final checkpoint yield if it is not required.
    yield op.checkpoint(state)

examples/common_patterns_for_connectors/update_and_delete/README.md:20

  • The note in the delete section incorrectly uses 'updating' instead of 'deleting'. Update the text to say 'When deleting records with composite primary keys...' to clearly reflect the operation being described.
> NOTE: When updating records with composite primary keys, you need to ensure that the primary key values are included in the delete payload. If there are multiple primary key columns, you need to include all of them in the payload to identify the record to mark as deleted.

@fivetran-sahilkhirwal fivetran-sahilkhirwal force-pushed the sahil/update-delete-example branch from 32c952b to d3f12c5 Compare March 11, 2025 13:18
@fivetran-sahilkhirwal fivetran-sahilkhirwal marked this pull request as ready for review March 11, 2025 13:20
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR adds examples for handling composite primary key operations in Fivetran connectors, demonstrating both update and delete workflows.

  • Added delete_example and update_example connector scripts that illustrate various cases of operations with composite primary keys.
  • Updated README documentation to reference the new examples and clarify their purpose.

Reviewed Changes

Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.

File Description
examples/common_patterns_for_connectors/update_and_delete/delete_example/connector.py Adds delete example demonstrating composite primary key deletion cases.
examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py Adds update example demonstrating composite primary key update cases.
examples/common_patterns_for_connectors/update_and_delete/README.md Provides an overview and instructions on handling composite primary keys.
README.md Updates the list of examples to include the new composite primary key operations example.

Copy link
Collaborator

@varundhall varundhall left a comment

Choose a reason for hiding this comment

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

please remove the inner readme

@fivetran-sahilkhirwal fivetran-sahilkhirwal marked this pull request as ready for review March 17, 2025 23:26
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This PR adds examples for handling composite primary key operations in both update and delete contexts using the Fivetran Connector SDK.

  • Introduces an update example with composite primary key support.
  • Introduces a delete example with composite primary key support.
  • Updates the README to include the new update and delete example.

Reviewed Changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

File Description
examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py Provides an example demonstrating update operations using composite primary keys.
examples/common_patterns_for_connectors/update_and_delete/delete_example/connector.py Provides an example demonstrating delete operations using composite primary keys.
README.md Updates the examples list with a reference to the new update and delete example.

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This pull request adds two example connectors demonstrating composite primary key operations for update and delete operations.

  • Adds an update_example that showcases various update scenarios when a composite primary key is provided.
  • Adds a delete_example that demonstrates delete operations using composite primary keys.
  • Updates the README documentation to include a reference to the composite primary key examples.

Reviewed Changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

File Description
examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py Adds an example for update operations with composite primary keys.
examples/common_patterns_for_connectors/update_and_delete/delete_example/connector.py Adds an example for delete operations using composite primary keys.
README.md Updates documentation to include the new composite primary key example.

Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This pull request adds new examples for handling composite primary key operations using update and delete methods in the fivetran_connector_sdk. The key changes include:

  • A new update example demonstrating composite primary key upsert and update operations.
  • A new delete example illustrating composite primary key deletion operations.
  • An update to the README to reference the new examples.

Reviewed Changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

File Description
examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py Provides an example implementation of update operations with a composite primary key.
examples/common_patterns_for_connectors/update_and_delete/delete_example/connector.py Provides an example implementation of delete operations with a composite primary key.
README.md Updates documentation to include a reference to the composite primary key update and delete examples.
Comments suppressed due to low confidence (2)

examples/common_patterns_for_connectors/delete_example/connector.py:53

  • Ensure the connection assignment is updated by using self.connection = self.connect() when there is no active connection to properly store and reuse the connection object.
if not self.connection:

examples/common_patterns_for_connectors/update_and_delete/update_example/connector.py:159

  • [nitpick] There are multiple checkpoint calls in the update function; consider consolidating them to a single checkpoint call to streamline the state update process.
yield op.checkpoint(state)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Copy link
Collaborator

Choose a reason for hiding this comment

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

Lgtm! Pls test it using a test connector if the results match/failures. Added few comments.

fivetran-sahilkhirwal and others added 2 commits April 2, 2025 15:15
Co-authored-by: fivetran-chiragramachandraiah <100183061+fivetran-chiragramachandraiah@users.noreply.github.com>
@fivetran-sahilkhirwal fivetran-sahilkhirwal merged commit 5cd1c62 into main Apr 2, 2025
1 check passed
@fivetran-sahilkhirwal fivetran-sahilkhirwal deleted the sahil/update-delete-example branch April 2, 2025 19:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants