I am trying to implement a BI solution using GCP where I have data in flat files in cloud datastore and I have to push this data in my Data Warehouse on BigQuery. The data will be incremental after the first load.
There doesn't seem to be any ETL functionality which I can use to implement this incremental data load into my warehouse. Using Cloud Dataflow, I can push the delta load into the BigQuery tables but this approach doesn't handle the updated records correctly.
Can anyone suggest here what could be the best approach for implementing this solution?