Skip to content

Commit

Permalink
Use bqetl CLI command to publish static files
Browse files Browse the repository at this point in the history
  • Loading branch information
scholtzan committed Aug 23, 2022
1 parent b554599 commit e91c213
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dags/publish_bqetl_static.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Daily deployment of static bigquery-etl data to various projects.
See the publish script [here](https://github.com/mozilla/bigquery-etl/blob/main/bigquery_etl/publish_static.py).
See the publish command [here](https://github.com/mozilla/bigquery-etl/blob/main/bigquery_etl/static/__init__.py).
"""

from airflow import DAG
Expand Down Expand Up @@ -38,7 +38,7 @@
publish_static_mozdata = gke_command(
task_id="publish_static_mozdata",
command=[
"script/publish_static",
"script/bqetl", "static", "publish",
"--project_id", "mozdata"
],
docker_image=IMAGE,
Expand All @@ -47,7 +47,7 @@
publish_static_shared_prod = gke_command(
task_id="publish_static_shared_prod",
command=[
"script/publish_static",
"script/bqetl", "static", "publish",
"--project_id", "moz-fx-data-shared-prod"
],
docker_image=IMAGE,
Expand Down

0 comments on commit e91c213

Please sign in to comment.