chore(DENG-11021): cancel cohort_daily_churn_v1 and cohort_weekly_cfs_staging_v1 tier 2 backfills#9708
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
This PR flips the status field from Initiate to Cancelled in four backfill.yaml files (cohort_daily_churn_v1 and cohort_weekly_cfs_staging_v1 under both telemetry_derived and glean_telemetry_derived), cancelling the Tier 2 install_source backfills started in #9690 so they can be re-run as single-date backfills.
Cancelled is a valid backfill status (bigquery_etl/backfill/parse.py), each file contains a single entry so there's no duplicate-Initiate concern, and the four edits are consistent. The rationale is well explained in the PR description. I found no code-quality or correctness issues to raise.
Collaborator
Integration report
|
BenWu
approved these changes
Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Cancels the four Tier 2cohort_daily_churn_v1/cohort_weekly_cfs_staging_v1install_sourcebackfills initiated in #9690, to be redone as single-date backfills:telemetry_derived.cohort_daily_churn_v1glean_telemetry_derived.cohort_daily_churn_v1telemetry_derived.cohort_weekly_cfs_staging_v1glean_telemetry_derived.cohort_weekly_cfs_staging_v1All four set
scheduling.date_partition_parameter: null, which tells the backfill machinery toWRITE_TRUNCATEthe whole table each run rather than write a single partition. Each run then rebuilds a trailing rolling window off@submission_date(churn180 days,cfs_staging768 days) — so the initiated2025-01-01 -> 2026-07-06range just re-truncates each table ~550 times and only the last run survives. They'll be re-initiated single-date (start_date == end_date) so one run rebuilds the full window.Related Tickets & Documents
Reviewer, please follow this checklist