I created a data pipeline using BigQuery SQL. It starts by importing a CSV file from Cloud Storage, then it is doing different analysis including Predictive modeling using BigQueryML Geography calculation using Geography functions, and KPIs computation using Analytic functions.
I am able to successfully run the different queries manually, and now i would like to automate the data pipeline.
My first choice was DataFlow SQL but it turns out that Dataflow SQL query syntax does not support geography functions.
DataFlow python is less of an option since the complete analysis is done in SQL and i would like to keep it this way.
My question is what are the other GCP options available to automate the data pipeline.