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

Feat : Source mysql #118

Merged
merged 43 commits into from
Mar 25, 2025
Merged

Feat : Source mysql #118

merged 43 commits into from
Mar 25, 2025

Conversation

vikash390
Copy link
Collaborator

@vikash390 vikash390 commented Feb 28, 2025

Description

  • Implemented MySQL Connector for Full Load and CDC: Developed a connector that supports both full load and Change Data Capture (CDC) functionality for seamless data migration and synchronization .
  • Used Row Chunking for Faster Backfill Performance: Implemented row chunking to optimize backfill operations, significantly improving data load speed and reducing system load during large data transfers.

Fixes # (issue)

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

  1. Full Load

  • Test inserting all data from the source table to the target table
  • Ensure data is correctly copied, with no missing or extra records.
  1. CDC

  • Test handling of new records added to the source table after the initial full load.
  • Test updates in the source table and verify they are reflected correctly in the target.
  • Test deletion of records in the source table and ensure they are removed from the target (if applicable).
  • Handle cases where no changes occur during CDC, ensuring no unnecessary updates.
  • Test adding new columns to the source table and ensure the target table schema is updated automatically.
  • Test removing columns from the source table and ensure the target table is updated accordingly.
  • Test renaming columns in the source table and verify the target schema reflects these changes

Verify data types and column mapping between source and target.

  • Scenario A
  • Scenario B

Screenshots or Recordings

Related PR's (If Any):

@vikash390 vikash390 changed the title Feat/source mysql WIP: Source mysql Feb 28, 2025
@vikash390 vikash390 changed the title WIP: Source mysql Feat : Source mysql Mar 13, 2025
@vikash390 vikash390 marked this pull request as ready for review March 13, 2025 05:38
@hash-data hash-data linked an issue Mar 13, 2025 that may be closed by this pull request
Comment on lines +187 to +189
logger.Warnf("Unsupported MySQL type '%s'for column '%s.%s', defaulting to String", dataType, streamName, columnName)
datatype = types.String
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

@shubham19may decision required...

@hash-data
Copy link
Collaborator

@vikash390 add readme in order to merge Mysql

@hash-data hash-data changed the base branch from master to development March 25, 2025 11:25
Copy link
Collaborator

@hash-data hash-data left a comment

Choose a reason for hiding this comment

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

LGTM

@hash-data hash-data merged commit 5a1e949 into development Mar 25, 2025
5 checks passed
@hash-data hash-data deleted the feat/source_mysql branch March 25, 2025 11:26
hash-data added a commit that referenced this pull request Mar 25, 2025
Co-authored-by: Priyansh Khodiyar <[email protected]>
Co-authored-by: hash-data <[email protected]>
Co-authored-by: Ankit Sharma <[email protected]>
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.

[Feat] MySql as a Source
2 participants