I have migrated data from Firestore to BigQuery, and it’s now streaming in real-time into a table named table1, which is located in the US region. I also have another table, table2, which is in the asia-south1 region. I want to join these two tables, but since they are in different regions, BigQuery doesn’t allow cross-region joins directly.
I’m considering migrating the data from table1 (US) to the asia-south1 region so that I can join it with table2. I found one potential solution using BigQuery Data Transfer Service, but I’m unsure if it supports real-time or continuous updates, as table1 receives streaming data continuously.
P.S. - I don’t want to directly migrate the data from Firestore to bigquery in asia-south1. Need other solution for my problem.
Thanks!