-
Notifications
You must be signed in to change notification settings - Fork 101
/
dags.yaml
1888 lines (1767 loc) · 47.2 KB
/
dags.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
bqetl_error_aggregates:
schedule_interval: 3h
default_args:
owner: wkahngreene@mozilla.com
email:
[
"telemetry-alerts@mozilla.com",
"wkahngreene@mozilla.com",
]
start_date: "2019-11-01"
retries: 1
retry_delay: 20m
depends_on_past: false
tags:
- impact/tier_1
bqetl_ssl_ratios:
schedule_interval: 0 2 * * *
description: The DAG schedules SSL ratios queries.
default_args:
owner: chutten@mozilla.com
start_date: "2019-07-20"
email: ["telemetry-alerts@mozilla.com", "chutten@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_amo_stats:
schedule_interval: 0 3 * * *
# yamllint disable rule:line-length
description: |
Add-on download and install statistics to power the
[addons.mozilla.org](https://addons.mozilla.org) (AMO) stats pages.
See the [post on the Add-Ons Blog](https://blog.mozilla.org/addons/2020/06/10/improvements-to-statistics-processing-on-amo/).
# yamllint enable rule:line-length
default_args:
owner: kik@mozilla.com
start_date: "2020-06-01"
email: ["telemetry-alerts@mozilla.com", "kik@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_core:
schedule_interval: 0 2 * * *
description:
Tables derived from the legacy telemetry `core` ping sent by various
mobile applications.
default_args:
owner: ascholtz@mozilla.com
start_date: "2019-07-25"
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_1
bqetl_nondesktop:
schedule_interval: 0 3 * * *
default_args:
owner: "ascholtz@mozilla.com"
start_date: "2019-07-25"
email: [
"telemetry-alerts@mozilla.com",
]
retries: 1
retry_delay: 5m
tags:
- impact/tier_1
bqetl_mobile_search:
schedule_interval: 0 2 * * *
default_args:
owner: akomar@mozilla.com
start_date: "2019-07-25"
email:
- "telemetry-alerts@mozilla.com"
- "akomar@mozilla.com"
- "cmorales@mozilla.com"
retries: 1
retry_delay: 5m
tags:
- impact/tier_1
bqetl_fxa_events:
schedule_interval: 30 1 * * *
description: |
Copies data from a Firefox Accounts (FxA) project. Those source tables
are populated via Cloud Logging (Stackdriver). We hash various fields
as part of the import.
The DAG also provides daily aggregations on top of the raw log data,
which eventually power high-level reporting about FxA usage.
Tasks here have occasionally failed due to incompatible schema changes
in the tables populated by Cloud Logging.
See https://github.com/mozilla/bigquery-etl/issues/1684 for an example
mitigation.
default_args:
owner: kik@mozilla.com
start_date: "2019-03-01"
email: ["telemetry-alerts@mozilla.com", "kik@mozilla.com"]
retries: 1
retry_delay: 10m
tags:
- impact/tier_1
bqetl_accounts_backend_external:
schedule_interval: 30 1 * * *
description: |
Copies data from Firefox Accounts (FxA) CloudSQL databases.
This DAG is under active development.
default_args:
owner: akomar@mozilla.com
start_date: "2023-09-19"
email: ["akomar@mozilla.com", "telemetry-alerts@mozilla.com"]
retries: 1
retry_delay: 10m
tags:
- impact/tier_3
- repo/bigquery-etl
bqetl_accounts_derived:
schedule_interval: 30 2 * * *
description: |
Derived tables for analyzing data from Mozilla Accounts (`accounts_backend` and
`accounts_frontend` Glean applications).
This DAG is under active development.
default_args:
owner: akomar@mozilla.com
start_date: "2024-01-01"
email: ["akomar@mozilla.com", "ksiegler@mozilla.com"]
retries: 1
retry_delay: 10m
tags:
- impact/tier_3
- repo/bigquery-etl
bqetl_subplat:
schedule_interval: 45 1 * * *
description: |
Daily imports for Subscription Platform data from Stripe and the Mozilla VPN
operational DB as well as derived tables based on that data.
Depends on `bqetl_fxa_events`, so is scheduled to run a bit after that.
Stripe data retrieved by stripe_external__itemized_payout_reconciliation__v5
task has highly viariable availability timing, so it is possible for it to
fail with the following type of error:
`Report 'frr_...' did not succeed, status was 'pending'`
In such cases the failure is expected, the task will continue to retry every
30 minutes until the data becomes available. If failure observed looks
different then it should be reported using the Airflow triage process.
default_args:
owner: srose@mozilla.com
start_date: "2021-07-20"
email: ["telemetry-alerts@mozilla.com", "srose@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_mozilla_vpn_site_metrics:
schedule_interval: 0 15 * * *
description: |
Daily extracts from the Google Analytics tables for Mozilla VPN as well as
derived tables based on that data.
Depends on Google Analytics exports, which have highly variable timing, so
queries depend on site_metrics_empty_check_v1, which retries every 30
minutes to wait for data to be available.
default_args:
owner: srose@mozilla.com
start_date: "2021-04-22"
email: ["telemetry-alerts@mozilla.com", "srose@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_2
bqetl_gud:
schedule_interval: 0 3 * * *
description: Optimized tables that power the
[Mozilla Growth and Usage Dashboard](https://gud.telemetry.mozilla.org).
default_args:
owner: jklukas@mozilla.com
start_date: "2019-07-25"
email: ["telemetry-alerts@mozilla.com", "jklukas@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_1
bqetl_messaging_system:
schedule_interval: 0 2 * * *
description: |
Daily aggregations on top of pings sent for the `messaging_system`
namespace by desktop Firefox.
default_args:
owner: najiang@mozilla.com
start_date: "2019-07-25"
email: ["telemetry-alerts@mozilla.com", "najiang@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_3
bqetl_activity_stream:
schedule_interval: 0 2 * * *
description: |
Daily aggregations on top of pings sent for the `activity_stream`
namespace by desktop Firefox. These are largely related to activity
on the newtab page and engagement with Pocket content.
default_args:
owner: mbowerman@mozilla.com
start_date: "2019-07-25"
email: ["telemetry-alerts@mozilla.com", "mbowerman@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_2
bqetl_search:
schedule_interval: 0 3 * * *
default_args:
owner: akomar@mozilla.com
start_date: "2018-11-27"
email:
- "telemetry-alerts@mozilla.com"
- "akomar@mozilla.com"
- "cmorales@mozilla.com"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_addons:
schedule_interval: 0 4 * * *
description: |
Daily rollups of addon data from `main` pings.
Depends on `bqetl_search`, so is scheduled after that DAG.
default_args:
owner: kik@mozilla.com
start_date: "2018-11-27"
email:
- "telemetry-alerts@mozilla.com"
- "kik@mozilla.com"
retries: 2
retry_delay: 30m
tags:
- impact/tier_2
bqetl_devtools:
schedule_interval: 0 3 * * *
description: |
Summarizes usage of the Dev Tools component of desktop Firefox.
default_args:
owner: ascholtz@mozilla.com
start_date: "2018-11-27"
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_main_summary:
schedule_interval: 0 2 * * *
description: |
General-purpose derived tables for analyzing usage of desktop Firefox.
This is one of our highest-impact DAGs and should be handled carefully.
default_args:
owner: ascholtz@mozilla.com
start_date: "2018-11-27"
email:
[
"telemetry-alerts@mozilla.com",
"ascholtz@mozilla.com",
]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_experiments_daily:
schedule_interval: 0 3 * * *
description: |
The DAG schedules queries that query experimentation related
metrics (enrollments, search, ...) from stable tables to finalize
numbers of experiment monitoring datasets for a specific date.
default_args:
owner: ascholtz@mozilla.com
start_date: "2018-11-27"
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
# DAG for exporting query data marked as public to GCS
# queries should not be explicitly assigned to this DAG (done automatically)
bqetl_public_data_json:
schedule_interval: 0 5 * * *
description: |
Daily exports of query data marked as public to GCS.
Depends on the results of several upstream DAGs, the latest of which
runs at 04:00 UTC.
default_args:
owner: ascholtz@mozilla.com
start_date: "2020-04-14"
email: ["telemetry-alerts@mozilla.com", "ascholtz@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_internet_outages:
schedule_interval: 0 7 * * *
description: |
DAG for building the internet outages datasets.
See [bug 1640204](https://bugzilla.mozilla.org/show_bug.cgi?id=1640204).
default_args:
owner: aplacitelli@mozilla.com
start_date: "2020-01-01"
email: ["aplacitelli@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_deletion_request_volume:
schedule_interval: 0 1 * * *
default_args:
owner: akomar@mozilla.com
start_date: "2020-06-29"
email: ["telemetry-alerts@mozilla.com", "akomar@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_fenix_event_rollup:
schedule_interval: 0 2 * * *
default_args:
owner: wlachance@mozilla.com
start_date: "2020-09-09"
email: ["wlachance@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_org_mozilla_fenix_derived:
schedule_interval: 0 2 * * *
default_args:
depends_on_past: false
email:
- amiyaguchi@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
owner: amiyaguchi@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2020-10-18"
tags:
- impact/tier_1
bqetl_org_mozilla_firefox_derived:
schedule_interval: 0 2 * * *
default_args:
depends_on_past: false
email:
- frank@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
owner: frank@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2022-11-30"
tags:
- impact/tier_1
bqetl_org_mozilla_focus_derived:
schedule_interval: 0 2 * * *
default_args:
depends_on_past: false
email:
- akomar@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
owner: akomar@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2023-02-22"
tags:
- impact/tier_1
bqetl_google_analytics_derived:
schedule_interval: 0 23 * * *
description: |
Daily aggregations of data exported from Google Analytics.
The GA export runs at 15:00 UTC, so there's an effective 2-day delay
for user activity to appear in these tables.
default_args:
owner: kwindau@mozilla.com
email:
- kwindau@mozilla.com
- telemetry-alerts@mozilla.com
start_date: "2020-10-31"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_monitoring:
schedule_interval: 0 2 * * *
description: |
This DAG schedules queries and scripts for populating datasets
used for monitoring of the data platform.
default_args:
owner: ascholtz@mozilla.com
email: ["ascholtz@mozilla.com"]
start_date: "2018-10-30"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_monitoring_airflow:
schedule_interval: 0 10 * * *
description: |
This DAG schedules queries and scripts for populating datasets
used for monitoring of Airflow DAGs.
default_args:
owner: kik@mozilla.com
email: ["kik@mozilla.com"]
start_date: "2022-09-01"
retries: 2
retry_delay: 30m
tags:
- impact/tier_2
bqetl_event_rollup:
schedule_interval: 0 3 * * *
description: |
Desktop tables (`telemetry_derived.events_daily_v1` and upstream) are deprecated and paused
(have their scheduling metadata commented out) per https://bugzilla.mozilla.org/show_bug.cgi?id=1805722#c10
default_args:
owner: wlachance@mozilla.com
start_date: "2020-11-03"
email: ["wlachance@mozilla.com"]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_iprospect:
schedule_interval: 0 4 * * *
description: |
This DAG imports iProspect data from moz-fx-data-marketing-prod-iprospect.
depends_on_past: false
default_args:
owner: ascholtz@mozilla.com
email:
[
"ascholtz@mozilla.com",
"echo@mozilla.com",
"shong@mozilla.com"
]
start_date: "2021-04-19"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_search_dashboard:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- akomar@mozilla.com
email_on_failure: true
email_on_retry: true
owner: akomar@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2020-12-14"
schedule_interval: 30 4 * * *
tags:
- impact/tier_2
bqetl_desktop_platform:
schedule_interval: 0 3 * * *
default_args:
owner: ascholtz@mozilla.com
start_date: "2018-11-01"
email:
[
"telemetry-alerts@mozilla.com",
"ascholtz@mozilla.com",
"yzenevich@mozilla.com",
]
retries: 2
retry_delay: 30m
tags:
- impact/tier_3
bqetl_internal_tooling:
description: |
This DAG schedules queries for populating tables related to Mozilla's
internal developer tooling (e.g. mozregression).
default_args:
depends_on_past: false
email:
- ahalberstadt@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: ahalberstadt@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2020-06-01"
schedule_interval: 0 4 * * *
tags:
- impact/tier_3
bqetl_release_criteria:
schedule_interval: daily
default_args:
owner: perf-pmo@mozilla.com
start_date: "2020-12-03"
email:
- telemetry-alerts@mozilla.com
- esmyth@mozilla.com
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_pocket:
default_args:
depends_on_past: false
email:
- kik@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
owner: kik@mozilla.com
# Retry more than normal because the files from Pocket may not always be available on time.
retries: 10
retry_delay: 60m
start_date: "2021-03-10"
description: |
Import of data from Pocket's Snowflake warehouse.
Originally created for [Bug 1695336](
https://bugzilla.mozilla.org/show_bug.cgi?id=1695336).
*Triage notes*
As long as the most recent DAG run is successful this job can be considered healthy.
In such case, past DAG failures can be ignored.
schedule_interval: 0 12 * * *
tags:
- impact/tier_2
bqetl_desktop_funnel:
description: |
This DAG schedules desktop funnel queries used to power the
[Numbers that Matter dashboard](https://protosaur.dev/numbers-that-matter/)
schedule_interval: 0 4 * * *
default_args:
owner: ascholtz@mozilla.com
start_date: "2021-01-01"
email:
[
"telemetry-alerts@mozilla.com",
"ascholtz@mozilla.com",
]
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_firefox_ios:
default_args:
depends_on_past: false
email:
- kik@mozilla.com
- frank@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: kik@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2021-03-18"
description: Schedule daily ios firefox ETL
schedule_interval: 0 4 * * *
tags:
- impact/tier_1
bqetl_releases:
default_args:
depends_on_past: false
email:
- ascholtz@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: ascholtz@mozilla.com
retries: 2
retry_delay: 30m
start_date: "2021-04-14"
description: |
Schedule release data import from https://product-details.mozilla.org/1.0
For more context, see
https://wiki.mozilla.org/Release_Management/Product_details
schedule_interval: 0 4 * * *
tags:
- impact/tier_2
bqetl_ctxsvc_derived:
default_args:
depends_on_past: false
email:
- ctroy@mozilla.com
- wstuckey@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: ctroy@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2021-05-01'
description: Contextual services derived tables
schedule_interval: 0 3 * * *
tags:
- impact/tier_2
bqetl_search_terms_daily:
default_args:
depends_on_past: false
email:
- ctroy@mozilla.com
- wstuckey@mozilla.com
- rburwei@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: ctroy@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2021-09-20'
description: |
Derived tables on top of search terms data.
Note that the tasks for populating `suggest_impression_sanitized_v*` are
particularly important because the source unsanitized dataset has only
a 2-day retention period, so errors fairly quickly become unrecoverable
and can impact reporting to partners. If this task errors out, it could
indicate trouble with an upstream task that runs in a restricted project
outside of Airflow. Contact `ctroy`, `wstuckey`, `whd`, and `jbuck`.
schedule_interval: 0 3 * * *
tags:
- impact/tier_1
bqetl_experimenter_experiments_import:
schedule_interval: "*/10 * * * *"
description: |
Imports experiments from the Experimenter V4 and V6 API.
Imported experiment data is used for experiment monitoring in
[Grafana](https://grafana.telemetry.mozilla.org/d/XspgvdxZz/experiment-enrollment).
default_args:
owner: ascholtz@mozilla.com
start_date: "2020-10-09"
retries: 0
email:
- ascholtz@mozilla.com
tags:
- impact/tier_2
bqetl_feature_usage:
schedule_interval: 0 5 * * *
description: |
Daily aggregation of browser features usages from `main` pings,
`event` pings and addon data.
Depends on `bqetl_addons` and `bqetl_main_summary`, so is scheduled after.
default_args:
owner: ascholtz@mozilla.com
start_date: "2021-01-01"
email:
- "telemetry-alerts@mozilla.com"
- "ascholtz@mozilla.com"
- "loines@mozilla.com"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_urlbar:
schedule_interval: 0 3 * * *
description: |
Daily aggregation of metrics related to urlbar usage.
default_args:
owner: akommasani@mozilla.com
start_date: "2021-08-01"
email:
- "telemetry-alerts@mozilla.com"
- "akommasani@mozilla.com"
- "akomar@mozilla.com"
retries: 2
retry_delay: 30m
tags:
- impact/tier_2
bqetl_unified:
schedule_interval: 0 3 * * *
description: |
Schedule queries that unify metrics across all products.
default_args:
owner: ascholtz@mozilla.com
start_date: "2021-10-12"
email:
- "telemetry-alerts@mozilla.com"
- "ascholtz@mozilla.com"
- "loines@mozilla.com"
- "lvargas@mozilla.com"
retries: 2
retry_delay: 30m
tags:
- impact/tier_1
bqetl_regrets_reporter_summary:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- kik@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: kik@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2021-12-12'
description: Measure usage of the regrets reporter addon
schedule_interval: 0 4 * * *
tags:
- impact/tier_1
bqetl_cjms_nonprod:
schedule_interval: 0 * * * *
description: |
Hourly ETL for cjms nonprod.
default_args:
owner: srose@mozilla.com
start_date: "2022-03-24"
email: ["telemetry-alerts@mozilla.com", "srose@mozilla.com"]
retries: 2
retry_delay: 5m
tags:
- impact/tier_3
bqetl_acoustic_contact_export:
schedule_interval: 0 9 * * *
description: |
Processing data loaded by
fivetran_acoustic_contact_export
DAG to clean up the data loaded from Acoustic.
default_args:
owner: cbeck@mozilla.com
start_date: "2024-04-03"
email: ["telemetry-alerts@mozilla.com", "cbeck@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_3
bqetl_acoustic_raw_recipient_export:
schedule_interval: 0 9 * * *
description: |
Processing data loaded by
fivetran_acoustic_raw_recipient_export
DAG to clean up the data loaded from Acoustic.
default_args:
owner: cbeck@mozilla.com
start_date: "2024-04-03"
email: ["telemetry-alerts@mozilla.com", "cbeck@mozilla.com"]
retries: 1
retry_delay: 5m
tags:
- impact/tier_3
bqetl_analytics_aggregations:
default_args:
depends_on_past: false
email:
- "telemetry-alerts@mozilla.com"
- "lvargas@mozilla.com"
- "gkaberere@mozilla.com"
email_on_failure: true
email_on_retry: true
end_date: null
owner: lvargas@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-05-12'
description: Scheduler to populate the aggregations required for
analytics engineering and reports optimization.
It provides data to build growth, search and usage metrics, as well
as acquisition and retention KPIs, in a model that facilitates
reporting in Looker.
schedule_interval: 15 4 * * *
tags:
- impact/tier_1
bqetl_fog_decision_support:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- pmcmanis@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: pmcmanis@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-05-25'
description: This DAG schedules queries for calculating FOG decision
support metrics
schedule_interval: 0 4 * * *
tags:
- impact/tier_3
- repo/bigquery-etl
bqetl_newtab:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- mbowerman@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: mbowerman@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-07-01'
description: Schedules newtab related queries.
schedule_interval: daily
tags:
- impact/tier_1
bqetl_desktop_mobile_search_monthly:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- akommasani@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: akommasani@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2019-01-01'
description: Generate mnthly client data from daily search table
schedule_interval: "0 5 2 * *"
tags:
- impact/tier_1
- repo/bigquery-etl
bqetl_domain_meta:
default_args:
depends_on_past: false
email:
- wstuckey@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: wstuckey@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-10-13'
description: Domain metadata
schedule_interval: monthly
tags:
- impact/tier_3
- triage/no_triage
- repo/bigquery-etl
bqetl_sponsored_tiles_clients_daily:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- skahmann@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: skahmann@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-09-13'
description: daily run of sponsored tiles related fields
schedule_interval: 0 4 * * *
tags:
- impact/tier_3
- repo/bigquery-etl
bqetl_mobile_activation:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- vsabino@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: vsabino@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2021-01-01'
description: Queries related to the mobile activation metric used by Marketing
schedule_interval: daily
tags:
- impact/tier_1
- repo/bigquery-etl
bqetl_analytics_tables:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- lvargas@mozilla.com
- gkaberere@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: lvargas@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2022-12-01'
description: Scheduled queries for analytics tables.
engineering.
schedule_interval: 0 2 * * *
tags:
- impact/tier_1
- repo/bigquery-etl
bqetl_fivetran_google_ads:
default_args:
depends_on_past: false
email:
- telemetry-alerts@mozilla.com
- frank@mozilla.com
email_on_failure: true
email_on_retry: true
end_date: null
owner: frank@mozilla.com
retries: 2
retry_delay: 30m
start_date: '2023-01-01'
description: Queries for Google Ads data
coming from Fivetran. Fivetran
updates these tables every hour.
schedule_interval: 0 2 * * *
tags:
- impact/tier_2
- repo/bigquery-etl
bqetl_campaign_cost_breakdowns:
default_args:
depends_on_past: false
email:
- ctroy@mozilla.com
- frank@mozilla.com
- telemetry-alerts@mozilla.com
email_on_failure: true
email_on_retry: true