d3af01c64a | ||
---|---|---|
.circleci | ||
.github | ||
schemas | ||
scripts | ||
templates | ||
tests | ||
validation | ||
.dockerignore | ||
.gitignore | ||
CMakeLists.txt | ||
CODE_OF_CONDUCT.md | ||
Dockerfile | ||
GRAVEYARD.md | ||
LICENSE.txt | ||
README.md | ||
README.pioneer.md | ||
README.shield.md | ||
pom.xml | ||
requirements.in | ||
requirements.txt |
README.md
Mozilla Pipeline Schemas
This repository contains schemas for Mozilla's data ingestion pipeline and data lake outputs.
The JSON schemas are used to validate incoming submissions at ingestion time.
The jsonschema
[Python]
and everit-org/json-schema
[Java]
library (using draft 4) are used for JSON Schema Validation in this repository's
tests.
This has implications for what kinds of string patterns are supported,
see the Conformance
section in the linked document for further details.
Note that as of 2019, the data pipeline uses the
everit-org/json-schema library
for validation in production (see
#302).
To learn more about writing JSON Schemas, Understanding JSON Schema is a great resource.
Adding a new schema
- Create the JSON Schema in the
templates
directory first. Make use of common schema components from thetemplates/include
directory where possible, including things like the telemetryenvironment
,clientId
,application
block, or UUID patterns. The filename should betemplates/<namespace>/<doctype>/<doctype>.<version>.schema.json
. - Build the rendered schemas using the instructions below, and check those artifacts (in the
schemas
directory) in to the git repo as well. See the rationale for this in the "Notes" section below. - Add one or more example JSON documents to the
validation
directory. - Run the tests (either via Docker or directly) using the instructions below.
- Once all tests pass, submit a PR to the github repository against the
master
branch. See also the notes on contributions.
Note that Pioneer studies have a slightly amended process.
Build
Prerequisites
CMake
(3.0+)jq
(1.5+)python
(3.6+)- Optional:
java 8
,maven
- Optional: Docker
On MacOS, these prerequisites can be installed using homebrew:
brew install cmake
brew install jq
brew install python
brew cask install docker
CMake Build Instructions
git clone https://github.com/mozilla-services/mozilla-pipeline-schemas.git
cd mozilla-pipeline-schemas
mkdir release
cd release
cmake .. # this is the build process (the schemas are built with cmake templates)
Running Tests via Docker
The tests expect example pings to be in the validation/<namespace>/
subdirectory, with files named
in the form <ping type>.<version>.<test name>.pass.json
for documents expected to be valid, or
<ping type>.<version>.<test name>.fail.json
for documents expected to fail validation.
The test name
should match the pattern [0-9a-zA-Z_]+
To run the tests, make use of the wrapper scripts:
./scripts/mps-build
./scripts/mps-test
Packaging and integration tests (optional)
Follow the CMake Build Instructions above to update the schemas
directory.
To run the unit-tests, run the following commands:
# optional: activate a virtual environment with python3.6+
python3 -m venv venv
source venv/bin/activate
# install python dependencies, if they haven't already
pip install -r requirements.txt
# run the tests, with 8 parallel processes
pytest -n 8
# run tests for a specific namespace and doctype
pytest -k telemetry/main.4
# run java tests only (if Java is configured)
pytest -k java
To generate a diff of BigQuery schemas, run the bigquery_schema_diff.py
script.
# optionally, enter the mozilla-pipeline-schemas environment
# for jsonschema-transpiler and python3 dependencies
./script/mps-shell
# generate an integration folder, the options will default to HEAD and master
# respectively
./script/bigquery_schema_diff.py --base-ref master --head-ref HEAD
This generates an integration
folder:
integration
├── bq_schema_f59ca95-d502688.diff
├── d502688
│ ├── activity-stream.events.1.bq
│ ├── activity-stream.impression-stats.1.bq
...
│ └── webpagetest.webpagetest-run.1.bq
└── f59ca95
├── activity-stream.events.1.bq
├── activity-stream.impression-stats.1.bq
...
└── webpagetest.webpagetest-run.1.bq
Pushes to the main repo will trigger integration tests in CircleCI that directly
compare the revision to the master
branch. These tests do not run for forked PRs
in order to protect data and credentials, but reviewers can trigger tests to run
by pushing the PR's revisions to a branch of the main repo. We provide a script for this:
# Before running, double check that the PR doesn't make any changes to
# .circleci/config.yml that could spill sensitive environment variables
# or data contents to the public CircleCI logs.
./.github/push-to-trigger-integration <username>:<branchname>
For details on how to compare two arbitrary revisions, refer to the integration
job in .circleci/config.yml
. For more documentation, see mozilla-services/edge-validator.
Releases
There is a daily series of tasks run by Airflow (see the
probe_scraper
DAG)
that uses the master
branch of this repository as input and ends up pushing
final JSONSchema and BigQuery schema files to the generated-schemas
branch.
As of January 2020, deploying schema changes still requires manual intervention
by a member of the Data Ops team, but you can generally expect schemas to be
deployed to production BigQuery tables several times a week.
Contributions
- All non trivial contributions should start with a bug or issue being filed (if it is a new feature please propose your design/approach before doing any work as not all feature requests are accepted).
- If updating the glean schemas, be sure to update the changelog in
include/glean/CHANGELOG.md
. - This repository is configured to auto-assign a reviewer on PR submission. If you do not receive a response within a few business days (or your request is urgent), please followup in the #fx-metrics slack channel.
- If your PR is associated with a bugzilla bug, please title it
Bug XXX - Description of change
, that way the Bugzilla PR Linker will automatically add an attachment with your PR to bugzilla, for future reference.
Notes
All schemas are generated from the 'templates' directory and written into the 'schemas' directory (i.e., the artifacts are generated/saved back into the repository) and validated against the draft 4 schema a copy of which resides in the 'tests' directory. The reason for this is twofold:
- It lets us easily see and refer to complete schemas as they are actually used. This means that the schemas can be referenced directly in bugs and such, as well as being fetched directly from the repo for testing other schema consumers (test being important here, as any production use should be using the installable packages).
- It gives us a changelog for each schema, rather than having to reason about changes to templated external pieces and when/how that impacted a given doctype's schema over time. This means that it should be easy to look back in time for the provenance of different parts of the schema for each doctype.