Reputation: 1
We have a composer environment in GCP and we want to export the airflow database in the tenant project to BigQuery. Is there a way to do so? Composer
Upvotes: 0
Views: 282
Reputation: 75910
I searched in all the location of Composer (on GKE with the secret and the cloud SQL proxy), in the Airflow db connexion, I got all the required element to connect my external source to BigQuery and I got this error:
So, you can't.....
EDIT 1:
Firstly, you can use the automatically configured connexion
Then, use the MySqlOperator to request the database and do what you want. Sometime it's easier to use the MySqlHook.
Upvotes: 1