Skip to content

Commit cdf9606

Browse files
Merge branch 'main' into initial-etl-gecko-trace
2 parents d4fdc0c + 5ed75c0 commit cdf9606

File tree

69 files changed

+2569
-698
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2569
-698
lines changed

bqetl_project.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,12 @@ generate:
393393
events_monitoring:
394394
skip_apps:
395395
- ads_backend # restricted dataset, we don't want to include it aggregate view
396+
- org_mozilla_fenix_nightly
397+
- org_mozilla_fennec_aurora
398+
# event pings for this app were removed but still high volume due to nimbus bugs in versions 138 to 140
399+
# events are still sent in the background-update ping, but they are being skipped
400+
# See: https://mozilla-hub.atlassian.net/browse/DENG-9715
401+
- firefox_desktop_background_update
396402
skip_pings:
397403
- topsites-impression # access denied
398404
- serp-categorization # access denied
@@ -402,7 +408,6 @@ generate:
402408
- events_v1
403409
manual_refresh: # apps to use manual materialized view refreshes for on-demand billing
404410
- firefox_desktop
405-
- firefox_desktop_background_update
406411
event_flow_monitoring:
407412
include_apps:
408413
- accounts_backend

requirements.in

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
attrs==25.3.0
2-
authlib==1.6.3
2+
authlib==1.6.4
33
beautifulsoup4==4.13.4
44
bigeye-sdk==0.6.5
5-
black==25.1.0
5+
black==25.9.0
66
cattrs==25.2.0
77
click==8.2.1
8-
cryptography==45.0.7
8+
cryptography==46.0.1
99
exceptiongroup==1.3.0 # for backwards compatibility with python < 3.11
1010
flake8<5 # pytest-flake8 does not support flake8 5+
1111
fredapi==0.5.2
@@ -15,11 +15,11 @@ google-auth>=2.30.0 # To try to fix "Compute Engine Metadata server call to uni
1515
google-cloud-bigquery==3.36.0
1616
google-cloud-bigquery-storage[fastavro]==2.33.1
1717
google-cloud-datacatalog-lineage==0.3.14
18-
google-cloud-storage==3.3.1
18+
google-cloud-storage==3.4.0
1919
Jinja2==3.1.6
2020
jsonschema==4.25.1
2121
PyJWT==2.10.1
22-
looker-sdk==25.10.0
22+
looker-sdk==25.16.0
2323
markdown-include==0.8.1
2424
mdx_truly_sane_lists==1.3
2525
mkdocs==1.6.1
@@ -46,7 +46,7 @@ smart_open==6.4.0
4646
sqlglot==25.28.0
4747
sqlparse==0.5.3
4848
stripe==6.4.0
49-
symbolic==12.16.2
49+
symbolic==12.16.3
5050
siggen==2.2.20241029
5151
tomli==2.2.1 # for backwards compatibility with python < 3.11
5252
types-python-dateutil==2.9.0.20250822

requirements.txt

Lines changed: 185 additions & 144 deletions
Large diffs are not rendered by default.

sql/moz-fx-data-shared-prod/accounts_backend_derived/monitoring_db_counts_v1/query.sql

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ WITH table_counts AS (
8080
'UTC'
8181
)
8282
UNION ALL
83+
SELECT
84+
'key_fetch_tokens' AS table_name,
85+
COUNT(*) AS total_rows
86+
FROM
87+
`moz-fx-data-shared-prod.accounts_db_external.fxa_key_fetch_tokens_v1` FOR SYSTEM_TIME AS OF TIMESTAMP(
88+
@as_of_date + 1,
89+
'UTC'
90+
)
91+
UNION ALL
8392
SELECT
8493
'linked_accounts' AS table_name,
8594
COUNT(*) AS total_rows

sql/moz-fx-data-shared-prod/apple_ads/ios_app_campaign_stats/view.sql

Lines changed: 0 additions & 7 deletions
This file was deleted.

sql/moz-fx-data-shared-prod/apple_ads_external/ios_app_campaign_stats_v1/bigconfig.yml

Lines changed: 0 additions & 61 deletions
This file was deleted.

sql/moz-fx-data-shared-prod/apple_ads_external/ios_app_campaign_stats_v1/metadata.yaml

Lines changed: 0 additions & 28 deletions
This file was deleted.

sql/moz-fx-data-shared-prod/apple_ads_external/ios_app_campaign_stats_v1/query.sql

Lines changed: 0 additions & 103 deletions
This file was deleted.

sql/moz-fx-data-shared-prod/apple_ads_external/ios_app_campaign_stats_v1/schema.yaml

Lines changed: 0 additions & 77 deletions
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#fail
2+
{{ is_unique(["gdp_country_code", "gdp_year"]) }}

0 commit comments

Comments
 (0)