Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mozilla/telemetry-airflow
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.8.2.0
Choose a base ref
...
head repository: mozilla/telemetry-airflow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 4,427 additions and 4,661 deletions.
  1. +126 −112 .circleci/config.yml
  2. +16 −0 .github/PULL_REQUEST_TEMPLATE.md
  3. +3 −4 Dockerfile
  4. +18 −22 Makefile
  5. +84 −30 README.md
  6. +450 −426 constraints.txt
  7. +6 −5 dags/app_store_analytics.py
  8. +1 −0 dags/backfill.py
  9. +64 −24 dags/bhr_collection.py
  10. +97 −13 dags/bqetl_artifact_deployment.py
  11. +32 −4 dags/bqetl_backfill.py
  12. +94 −0 dags/bqetl_backfill_complete.py
  13. +101 −0 dags/bqetl_backfill_initiate.py
  14. +13 −6 dags/broken_site_report_ml.py
  15. +14 −12 dags/contextual_services_import.py
  16. +5 −36 dags/copy_deduplicate.py
  17. +1 −2 dags/crash_symbolication.py
  18. +4 −4 dags/dap_collector.py
  19. +78 −0 dags/dap_collector_ppa_dev.py
  20. +94 −0 dags/dap_collector_ppa_prod.py
  21. +70 −0 dags/dbt_daily.py
  22. +151 −0 dags/eam_slack_channels.py
  23. +173 −0 dags/eam_workday_everfi_integration.py
  24. +227 −0 dags/eam_workday_netsuite.py
  25. +203 −0 dags/eam_workday_xmatters_integration.py
  26. +16 −16 dags/experiments_live.py
  27. +41 −52 dags/firefox_public_data_report.py
  28. +45 −1 dags/fivetran_acoustic.py
  29. +73 −0 dags/fxci_metric_export.py
  30. +76 −0 dags/fxci_pulse_export.py
  31. +8 −10 dags/ga4_site_metrics_summary_backfill.py
  32. +60 −87 dags/glam.py
  33. +74 −93 dags/glam_fenix.py
  34. +119 −0 dags/glam_fenix_release.py
  35. +77 −87 dags/glam_fog.py
  36. +130 −0 dags/glam_fog_release.py
  37. +14 −120 dags/glam_glean_imports.py
  38. +11 −10 dags/influxdb_to_bigquery.py
  39. +10 −9 dags/kpi_forecasting.py
  40. +239 −0 dags/looker.py
  41. +21 −11 dags/ltv.py
  42. +26 −23 dags/mad_server.py
  43. +89 −0 dags/microsoft_store.py
  44. +0 −153 dags/mozaggregator_mobile.py
  45. +90 −0 dags/operational_monitoring_backfill.py
  46. +13 −10 dags/play_store_export.py
  47. +48 −127 dags/probe_scraper.py
  48. +15 −14 dags/publish_bqetl_static.py
  49. +11 −9 dags/search_alert.py
  50. +78 −0 dags/search_forecasting.py
  51. +0 −54 dags/search_term_data_validation_v2.py
  52. +80 −42 dags/shredder.py
  53. +130 −0 dags/shredder_backfill.py
  54. +8 −44 dags/socorro_import.py
  55. +0 −307 dags/taar_daily.py
  56. +0 −216 dags/taar_weekly.py
  57. +1 −0 dags/update_orphaning_dashboard_etl.py
  58. +25 −7 dags/webcompat_kb.py
  59. +4 −2 docker-compose.yml
  60. +94 −65 jobs/socorro_import_crash_data.py
  61. +0 −532 jobs/taar_ensemble.py
  62. +0 −395 jobs/taar_lite_guidguid.py
  63. +0 −472 jobs/taar_locale.py
  64. +0 −558 jobs/taar_similarity.py
  65. +25 −7 operators/gcp_container_operator.py
  66. +1 −1 plugins/timetable.py
  67. +70 −0 plugins/version_endpoint.py
  68. +2 −0 pyproject.toml
  69. +11 −0 requirements-dev.in
  70. +21 −0 requirements-dev.txt
  71. +1 −0 requirements-override.txt
  72. +11 −7 requirements.in
  73. +192 −169 requirements.txt
  74. +10 −20 resources/dev_connections.json
  75. +3 −6 resources/dev_variables.json
  76. +1 −1 resources/dev_webserver_config.py
  77. 0 tests/plugins/__init__.py
  78. 0 tests/{ → plugins}/test_timetable.py
  79. +107 −0 tests/plugins/test_version_endpoint.py
  80. +4 −0 utils/acoustic/acoustic_client.py
  81. +2 −2 utils/dataproc.py
  82. +62 −77 utils/gcp.py
  83. +9 −94 utils/glam_subdags/extract.py
  84. +9 −4 utils/glam_subdags/general.py
  85. +15 −2 utils/glam_subdags/generate_query.py
  86. +9 −4 utils/glam_subdags/histograms.py
  87. +0 −40 utils/glam_subdags/probe_hotlist.py
  88. +11 −1 utils/tags.py
Loading