Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

thinkingmachines/bqup

Repository files navigation

Note If this is your first time checking out bqup, you might want to try out Dataform or dbt instead!

bqup

bqup is a backup tool for BigQuery projects. It can export a BigQuery project's structure and source code while mimicking the hierarchy of datasets and tables.

How bqup works

For the full story of why we made bqup, check out our blog post!

Installation

bqup can be installed using pip.

pip install bqup

Alternatively, you can also clone the repository then run install.

git clone https://github.com/thinkingmachines/bqup.git
cd bqup
python3 setup.py install

Usage

Command line options

You can list down the options by running bqup --help.

bqup [-p PROJECT_ID] [-d TARGET_DIR] [-fvxr] [-e REGEX]

Options:
  -p PROJECT_ID, --project PROJECT_ID  Project ID to load. If unspecified,
                                       defaults to current project in
                                       configuration.
  -d TARGET_DIR, --dir TARGET_DIR      The target directory where the project
                                       will be written. Defaults to current
                                       timestamp.
  -f --force                           Overwrite target directory if it exists.
  -v --verbose                         Print a summary of the loaded project.
  -x --schema                          Export table schemata as json.
  -r --routine                         Include routines in export.
  -e REGEX, --regex REGEX              Regex pattern to filter datasets to be exported.

Development

  1. Set up gcloud to run with your personal account (aka run with scissors).

  2. Set up application-default.

    gcloud auth application-default login
    
  3. Install wheel.

    pip3 install wheel
    
  4. Install bqup.

    pip3 install -e .
    

    Alternatively, you can also install it using:

    python3 setup.py develop
    
  5. Run bqup (see Usage).

Setting up regular backups

Check out bqup-starter to set up regular bqups using GitHub's workflows!

Distribution

Run make test to try a test upload.

Run make dist to upload a distribution.

Both of these will call make build, which rebuilds the package locally.

Contributors

Thanks to all these wonderful people who've helped out with bqup:

Jess
Jess
Ram
Ram
Pepe Berba
Pepe Berba
Tim Pron
Tim Pron
Enzo
Enzo

Ardie
Ardie

Disclaimers

bqup is no longer being maintained

  • There are currently no plans to maintain this project.
  • Thinking Machines does not make any guarantees about the quality of the software.