#!/bin/sh

# Copy a day's data from live to stable ping tables, deduplicating on document_id.

# By default, the script will process all tables in datasets named
# like *_live, copying data into table of the same name in *_stable
# datasets. The script can be configured to exclude a list of tables
# or to process only a specific list of tables.

exec python3 -m bigquery_etl.copy_deduplicate "$@"
