I want to use the BigQueryDataTransferServiceStartTransferRunsOperator
based on this example: https://airflow.apache.org/docs/apache-airflow-providers-google/stable/operators/cloud/bigquery_dts.html
I want to pass the path of the CSV file (or folder with templated path) from Airflow to this operator somehow and execute the existing BigQuery Transfer. The problem is, that I can't find any solution to pass Runtime Arguments to this operator.
I don't want to recreate this BQ transfer every time with BigQueryCreateDataTransferOperator
and add a new config, because this way I'll loose the Transfer Service logs from previuos days.
What I want is to somehow define the Transfer Service with a template string for the input path and fill this template when the DAG runs, or pass the path of the CSV file directly.
Is it possible to somehow achieve this? If yes, how?