Reputation: 31
Hi we want to replicate the data from Mysql(source) to GoogleBigquery(destination) we adopted the method described by google Docs with Data fusion replication pipeline as mentioned in Link https://cloud.google.com/data-fusion/docs/tutorials/replicating-data/mysql-to-bigquery
Berief of what we are doing: Enabling bin log in MY SQL for CDC(Change data Capture) creating a replication pipeline in data fusion starting the pipeline and syncing the data
able to fetch every change from MYSQL but data is not transferring to bigquery table schema was created but data is not transferred loading batch of 1 event in to statging Bucket we are using developer mode and waited for more than 90 mins
Upvotes: 0
Views: 1154
Reputation: 1552
The issue might be happening because there may be a schema/data type mismatch with the BigQuery table and the source MYSQL database table on the columns.
For example: if you have a column in source table, in BigQuery this column is of INT64
datatype with a length of 19, while in the source database table, it is Integer
type with a length of 10, so you need to update the length of columns as per your datasize.
Upvotes: 1