Skip to content
Snippets Groups Projects
Commit b722f54e authored by Justin Stark's avatar Justin Stark :tools:
Browse files

Merge branch 'fix-conusing-naming-bigquery-export-ga4' into 'master'

fix confusing naming bigquery export for ga4

See merge request gitlab-data/analytics!11781
parents 0d0213ae c41f92b2
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ for export in stream["exports"]:
export_name = export["name"]
export_date_str = "{{ yesterday_ds_nodash }}"
billing_extract_command = f"""
extract_command = f"""
{clone_and_setup_extraction_cmd} &&
python bigquery/src/bigquery_export.py \
--config_path={spec_file} \
......@@ -131,7 +131,7 @@ for export in stream["exports"]:
task_name = export["name"]
billing_operator = KubernetesPodOperator(
extract_operator = KubernetesPodOperator(
**gitlab_defaults,
image=DATA_IMAGE,
task_id=export_name,
......@@ -144,8 +144,8 @@ for export in stream["exports"]:
},
affinity=get_affinity("extraction"),
tolerations=get_toleration("extraction"),
arguments=[billing_extract_command],
arguments=[extract_command],
dag=dag,
)
billing_operator >> dbt_external_table_run
extract_operator >> dbt_external_table_run
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment