People, the company I work for has some MySQL databases on AWS (Amazon RDS). We are creating POCs with BigQuery, and now I am learning how to replicate databases on BigQuery (existing registers and new ones in the future). My doubts:
- How to replicate MySQL tables and rows in BigQuery. Is there any tool for this (I'm reading about the Amazon Database Migration Service)? Should I copy to Google Cloud SQL and export to BigQuery?
- How to copy future registers? Is it possible to create a task inside MySQL to send new registers after a predefined number? For example, after entering 1000 new lines (or time), some event “fires”, and new registers are copied to Cloud SQL / BigQuery?
My initial idea is to reset the original database, load it into another and use the script to listen to new registers and send them to the new database.
Did I explain this correctly? It's clear?
source share