Bigquery ETL
Перейти к файлу
Anna Scholtz d6395d0c94 Undo change on parallelizing dependency record 2024-08-08 17:16:17 -07:00
.circleci Pass ID token to dryrun instances to speed things up (#6019) 2024-08-08 12:38:43 -07:00
.github
.vscode
bigquery_etl Undo change on parallelizing dependency record 2024-08-08 17:16:17 -07:00
docs docs: add note about no_triage while unedr development (#5761) 2024-06-06 20:01:54 +02:00
script GLAM purge percentile calculations and prep downstream (#5966) 2024-07-25 10:44:43 -04:00
sql DENG-4492 add profile group ID to event_events_v1 & main_events_v1 (#6034) 2024-08-08 16:15:35 -05:00
sql_generators Fall back to running query to get view schema 2024-08-08 14:56:39 -07:00
tests Auxiliary functions for shredder mitigation (#6002) 2024-08-05 20:02:16 +02:00
.bigqueryrc
.dockerignore
.eslintrc.yml
.flake8
.gitignore
.isort.cfg
.pre-commit-config.yaml Exclude ETL `query.py` files from mypy pre-commit checks. (#5519) 2024-05-08 14:09:19 +02:00
.yamllint.yaml
CODEOWNERS [RS-1091: client-level DAU] update query to adjust for default engine bugs (#5937) 2024-07-18 10:43:22 -04:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile fix(glam): add a more robust way to fetch glean tables (#5787) 2024-06-13 20:38:41 -04:00
GRAVEYARD.md
LICENSE
README.md Fix PyPI package publishing in CI (#5669) 2024-05-28 14:03:06 -07:00
bqetl fix(bqetl): issue running ./bqetl on Fedora Silverblue (#5989) 2024-08-07 09:09:25 -07:00
bqetl_project.yaml AD-437 Add PPA measurements w/o advertiser view (#6006) 2024-08-02 17:40:50 -04:00
conftest.py
dags.yaml Create new firefox_desktop_derived.adclick_history_v1 table and DAG (#5922) 2024-07-16 10:47:51 -05:00
pyproject.toml Fix PyPI package publishing in CI (#5669) 2024-05-28 14:03:06 -07:00
pytest.ini Add bigquery-etl-integration-test to testpath (#5976) 2024-07-30 10:16:18 -07:00
requirements.in Upgrade `google-auth` package to v2.30.0. (#5852) 2024-06-26 15:59:58 -07:00
requirements.txt Bump setuptools from 69.0.3 to 70.0.0 (#5920) 2024-07-22 09:37:20 -07:00

README.md

CircleCI

BigQuery ETL

This repository contains Mozilla Data Team's:

  • Derived ETL jobs that do not require a custom container
  • User-defined functions (UDFs)
  • Airflow DAGs for scheduled bigquery-etl queries
  • Tools for query & UDF deployment, management and scheduling

For more information, see https://mozilla.github.io/bigquery-etl/

Quick Start

Pre-requisites

  • Pyenv (optional) Recommended if you want to install different versions of python, see instructions here. After the installation of pyenv, make sure that your terminal app is configured to run the shell as a login shell.
  • Homebrew (not required, but useful for Mac) - Follow the instructions here to install homebrew on your Mac.
  • Python 3.11+ - (see this guide for instructions if you're on a mac and haven't installed anything other than the default system Python).

GCP CLI tools

  • For Mozilla Employees (not in Data Engineering) - Set up GCP command line tools, as described on docs.telemetry.mozilla.org. Note that some functionality (e.g. writing UDFs or backfilling queries) may not be allowed. Run gcloud auth login --update-adc to authenticate against GCP.
  • For Data Engineering - In addition to setting up the command line tools, you will want to log in to shared-prod if making changes to production systems. Run gcloud auth login --update-adc --project=moz-fx-data-shared-prod (if you have not run it previously).

Installing bqetl

  1. Clone the repository
git clone git@github.com:mozilla/bigquery-etl.git
cd bigquery-etl
  1. Install the bqetl command line tool
./bqetl bootstrap
  1. Install standard pre-commit hooks
venv/bin/pre-commit install

Finally, if you are using Visual Studio Code, you may also wish to use our recommended defaults:

cp .vscode/settings.json.default .vscode/settings.json
cp .vscode/launch.json.default .vscode/launch.json

And you should now be set up to start working in the repo! The easiest way to do this is for many tasks is to use bqetl. You may also want to read up on common workflows.

Releasing a new version of bqetl

To push a new version of bqetl to PyPI, update the version in pyproject.toml. The version numbers follow the CalVer scheme, with the Micro version numbers starting at 1. For example, for the first package version getting published in March 2024, the version would be 2024.3.1.