Reassign DAG and query ownerships to ascholtz and anicholson (#3867)
This commit is contained in:
Родитель
42ee3d6ed3
Коммит
b6bcc5143f
18
dags.yaml
18
dags.yaml
|
@ -51,9 +51,9 @@ bqetl_core:
|
|||
Tables derived from the legacy telemetry `core` ping sent by various
|
||||
mobile applications.
|
||||
default_args:
|
||||
owner: jklukas@mozilla.com
|
||||
owner: ascholtz@mozilla.com
|
||||
start_date: "2019-07-25"
|
||||
email: ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"]
|
||||
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
|
||||
retries: 1
|
||||
retry_delay: 5m
|
||||
tags:
|
||||
|
@ -62,7 +62,7 @@ bqetl_core:
|
|||
bqetl_nondesktop:
|
||||
schedule_interval: 0 3 * * *
|
||||
default_args:
|
||||
owner: "jklukas@mozilla.com"
|
||||
owner: "ascholtz@mozilla.com"
|
||||
start_date: "2019-07-25"
|
||||
email: [
|
||||
"telemetry-alerts@mozilla.com",
|
||||
|
@ -190,9 +190,9 @@ bqetl_activity_stream:
|
|||
namespace by desktop Firefox. These are largely related to activity
|
||||
on the newtab page and engagement with Pocket content.
|
||||
default_args:
|
||||
owner: jklukas@mozilla.com
|
||||
owner: anicholson@mozilla.com
|
||||
start_date: "2019-07-25"
|
||||
email: ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"]
|
||||
email: ["telemetry-alerts@mozilla.com", "anicholson@mozilla.com"]
|
||||
retries: 1
|
||||
retry_delay: 5m
|
||||
tags:
|
||||
|
@ -233,9 +233,9 @@ bqetl_devtools:
|
|||
description: |
|
||||
Summarizes usage of the Dev Tools component of desktop Firefox.
|
||||
default_args:
|
||||
owner: jklukas@mozilla.com
|
||||
owner: ascholtz@mozilla.com
|
||||
start_date: "2018-11-27"
|
||||
email: ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"]
|
||||
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
|
||||
retries: 2
|
||||
retry_delay: 30m
|
||||
tags:
|
||||
|
@ -475,12 +475,12 @@ bqetl_search_dashboard:
|
|||
bqetl_desktop_platform:
|
||||
schedule_interval: 0 3 * * *
|
||||
default_args:
|
||||
owner: jklukas@mozilla.com
|
||||
owner: ascholtz@mozilla.com
|
||||
start_date: "2018-11-01"
|
||||
email:
|
||||
[
|
||||
"telemetry-alerts@mozilla.com",
|
||||
"jklukas@mozilla.com",
|
||||
"ascholtz@mozilla.com",
|
||||
"yzenevich@mozilla.com",
|
||||
]
|
||||
retries: 2
|
||||
|
|
|
@ -21,15 +21,15 @@ on the newtab page and engagement with Pocket content.
|
|||
|
||||
#### Owner
|
||||
|
||||
jklukas@mozilla.com
|
||||
anicholson@mozilla.com
|
||||
"""
|
||||
|
||||
|
||||
default_args = {
|
||||
"owner": "jklukas@mozilla.com",
|
||||
"owner": "anicholson@mozilla.com",
|
||||
"start_date": datetime.datetime(2019, 7, 25, 0, 0),
|
||||
"end_date": None,
|
||||
"email": ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"],
|
||||
"email": ["telemetry-alerts@mozilla.com", "anicholson@mozilla.com"],
|
||||
"depends_on_past": False,
|
||||
"retry_delay": datetime.timedelta(seconds=300),
|
||||
"email_on_failure": True,
|
||||
|
@ -51,8 +51,8 @@ with DAG(
|
|||
destination_table="impression_stats_by_experiment_v1",
|
||||
dataset_id="activity_stream_bi",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="anicholson@mozilla.com",
|
||||
email=["anicholson@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
)
|
||||
|
@ -62,8 +62,8 @@ with DAG(
|
|||
destination_table="impression_stats_flat_v1",
|
||||
dataset_id="activity_stream_bi",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="anicholson@mozilla.com",
|
||||
email=["anicholson@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
)
|
||||
|
|
|
@ -18,15 +18,15 @@ Built from bigquery-etl repo, [`dags/bqetl_core.py`](https://github.com/mozilla/
|
|||
Tables derived from the legacy telemetry `core` ping sent by various mobile applications.
|
||||
#### Owner
|
||||
|
||||
jklukas@mozilla.com
|
||||
ascholtz@mozilla.com
|
||||
"""
|
||||
|
||||
|
||||
default_args = {
|
||||
"owner": "jklukas@mozilla.com",
|
||||
"owner": "ascholtz@mozilla.com",
|
||||
"start_date": datetime.datetime(2019, 7, 25, 0, 0),
|
||||
"end_date": None,
|
||||
"email": ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"],
|
||||
"email": ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"],
|
||||
"depends_on_past": False,
|
||||
"retry_delay": datetime.timedelta(seconds=300),
|
||||
"email_on_failure": True,
|
||||
|
@ -48,8 +48,8 @@ with DAG(
|
|||
destination_table="core_clients_daily_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
priority_weight=75,
|
||||
|
@ -60,8 +60,8 @@ with DAG(
|
|||
destination_table="core_clients_last_seen_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=True,
|
||||
priority_weight=70,
|
||||
|
|
|
@ -15,17 +15,17 @@ Built from bigquery-etl repo, [`dags/bqetl_desktop_platform.py`](https://github.
|
|||
|
||||
#### Owner
|
||||
|
||||
jklukas@mozilla.com
|
||||
ascholtz@mozilla.com
|
||||
"""
|
||||
|
||||
|
||||
default_args = {
|
||||
"owner": "jklukas@mozilla.com",
|
||||
"owner": "ascholtz@mozilla.com",
|
||||
"start_date": datetime.datetime(2018, 11, 1, 0, 0),
|
||||
"end_date": None,
|
||||
"email": [
|
||||
"telemetry-alerts@mozilla.com",
|
||||
"jklukas@mozilla.com",
|
||||
"ascholtz@mozilla.com",
|
||||
"yzenevich@mozilla.com",
|
||||
],
|
||||
"depends_on_past": False,
|
||||
|
@ -51,7 +51,7 @@ with DAG(
|
|||
project_id="moz-fx-data-shared-prod",
|
||||
owner="yzenevich@mozilla.com",
|
||||
email=[
|
||||
"jklukas@mozilla.com",
|
||||
"ascholtz@mozilla.com",
|
||||
"telemetry-alerts@mozilla.com",
|
||||
"yzenevich@mozilla.com",
|
||||
],
|
||||
|
|
|
@ -19,15 +19,15 @@ Summarizes usage of the Dev Tools component of desktop Firefox.
|
|||
|
||||
#### Owner
|
||||
|
||||
jklukas@mozilla.com
|
||||
ascholtz@mozilla.com
|
||||
"""
|
||||
|
||||
|
||||
default_args = {
|
||||
"owner": "jklukas@mozilla.com",
|
||||
"owner": "ascholtz@mozilla.com",
|
||||
"start_date": datetime.datetime(2018, 11, 27, 0, 0),
|
||||
"end_date": None,
|
||||
"email": ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"],
|
||||
"email": ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"],
|
||||
"depends_on_past": False,
|
||||
"retry_delay": datetime.timedelta(seconds=1800),
|
||||
"email_on_failure": True,
|
||||
|
@ -49,11 +49,10 @@ with DAG(
|
|||
destination_table="devtools_accessiblility_panel_usage_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="wlachance@mozilla.com",
|
||||
owner="yzenevich@mozilla.com",
|
||||
email=[
|
||||
"jklukas@mozilla.com",
|
||||
"ascholtz@mozilla.com",
|
||||
"telemetry-alerts@mozilla.com",
|
||||
"wlachance@mozilla.com",
|
||||
"yzenevich@mozilla.com",
|
||||
],
|
||||
start_date=datetime.datetime(2018, 8, 1, 0, 0),
|
||||
|
@ -66,8 +65,8 @@ with DAG(
|
|||
destination_table="devtools_panel_usage_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
start_date=datetime.datetime(2019, 11, 25, 0, 0),
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
|
|
|
@ -15,12 +15,12 @@ Built from bigquery-etl repo, [`dags/bqetl_nondesktop.py`](https://github.com/mo
|
|||
|
||||
#### Owner
|
||||
|
||||
jklukas@mozilla.com
|
||||
ascholtz@mozilla.com
|
||||
"""
|
||||
|
||||
|
||||
default_args = {
|
||||
"owner": "jklukas@mozilla.com",
|
||||
"owner": "ascholtz@mozilla.com",
|
||||
"start_date": datetime.datetime(2019, 7, 25, 0, 0),
|
||||
"end_date": None,
|
||||
"email": ["telemetry-alerts@mozilla.com"],
|
||||
|
@ -45,8 +45,8 @@ with DAG(
|
|||
destination_table="firefox_nondesktop_exact_mau28_by_client_count_dimensions_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
)
|
||||
|
@ -67,8 +67,8 @@ with DAG(
|
|||
destination_table="firefox_nondesktop_exact_mau28_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter="submission_date",
|
||||
depends_on_past=False,
|
||||
)
|
||||
|
@ -78,8 +78,8 @@ with DAG(
|
|||
destination_table="mobile_usage_v1",
|
||||
dataset_id="telemetry_derived",
|
||||
project_id="moz-fx-data-shared-prod",
|
||||
owner="jklukas@mozilla.com",
|
||||
email=["jklukas@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
owner="ascholtz@mozilla.com",
|
||||
email=["ascholtz@mozilla.com", "telemetry-alerts@mozilla.com"],
|
||||
date_partition_parameter=None,
|
||||
depends_on_past=False,
|
||||
task_concurrency=1,
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Representation of tile impression statistics,
|
|||
clustered by experiment_id to allow efficient analysis of
|
||||
individual experiments
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- anicholson@mozilla.com
|
||||
labels:
|
||||
application: activity_stream
|
||||
schedule: daily
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
friendly_name: Impression Stats Flat
|
||||
description: Unnested representation of tile impression statistics
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- anicholson@mozilla.com
|
||||
labels:
|
||||
application: activity_stream
|
||||
schedule: daily
|
||||
|
|
|
@ -5,7 +5,7 @@ description: >
|
|||
each client sending core pings,
|
||||
partitioned by day
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
labels:
|
||||
schedule: daily
|
||||
scheduling:
|
||||
|
|
|
@ -4,7 +4,7 @@ description: >
|
|||
Captures history of activity of each client sending core pings in 28 day
|
||||
windows for each submission date.
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
labels:
|
||||
schedule: daily
|
||||
scheduling:
|
||||
|
|
|
@ -4,7 +4,6 @@ description: >
|
|||
A daily number of usages of different accessibility devtools,
|
||||
partitioned by day.
|
||||
owners:
|
||||
- wlachance@mozilla.com
|
||||
- yzenevich@mozilla.com
|
||||
labels:
|
||||
application: devtools
|
||||
|
|
|
@ -2,7 +2,7 @@ friendly_name: Devtools Panel Usage
|
|||
description: |
|
||||
A daily number of usages of different devtools, partitioned by day.
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
labels:
|
||||
application: devtools
|
||||
schedule: daily
|
||||
|
|
|
@ -4,7 +4,7 @@ description: >
|
|||
Monthly active users with non-desktop clients aggregated across
|
||||
unique sets of dimensions.
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
labels:
|
||||
application: nondesktop
|
||||
schedule: daily
|
||||
|
|
|
@ -3,7 +3,7 @@ friendly_name: Firefox Non-desktop Exact MAU
|
|||
description: >
|
||||
Monthly active users with non-desktop clients.
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
labels:
|
||||
application: nondesktop
|
||||
schedule: daily
|
||||
|
|
|
@ -17,7 +17,7 @@ description: |-
|
|||
labels:
|
||||
schedule: daily
|
||||
owners:
|
||||
- jklukas@mozilla.com
|
||||
- ascholtz@mozilla.com
|
||||
scheduling:
|
||||
dag_name: bqetl_nondesktop
|
||||
# The source table is already small here, so we completely recreate this
|
||||
|
|
Загрузка…
Ссылка в новой задаче