The python-bigquery-migrations
package provides a streamlined way to create and manage BigQuery databases using intuitive CLI commands, such as the following:
bigquery-migrations run
What are the benefits of using migrations?
Migrations are like version control for your database, allowing you to define and share the application's datasets and table schema definitions.
- Google Cloud Project with enabled billing
- Enabled Google Cloud BigQuery API
- Google Cloud Service Account JSON file
pip install bigquery-migrations
Create two subdirectory:
- credentials
- migrations
your-project-root-folder
├── credentials
├── migrations
└── ...
Put your Google Cloud Service Account JSON file in the credentials subdirectory. See more info in the Authorize BigQuery Client section
your-project
├── credentials
│ ├── gcp-sa.json
├── migrations
└── ...
You can use different folder name and file name but in that case you must specify them with command arguments, such as the following:
bigquery-migrations run --gcp-sa-json-dir my-creds --gcp-sa-json-fname my-service-account.json
argument | description |
---|---|
--gcp-sa-json-dir | Name of the service account JSON file directory (optional) |
--gcp-sa-json-fname | Name of the service account JSON file (optional) |
IMPORTANT!
Never check the Google Cloud Service Account JSON file into version control. This file contains sensitive credentials that could compromise your Google Cloud account if exposed.
To prevent accidental commits, make sure to add the file to your .gitignore configuration. For example:
# .gitignore
gcp-sa.json
By ignoring this file, you reduce the risk of unintentional leaks and maintain secure practices in your repository.
Create your own migrations and put them in the migrations directory. See the Migration structure section and Migration naming conventions section for more info.
your-project
├── credentials
│ ├── gcp-sa.json
├── migrations
│ ├── 2024_12_01_120000_create_users_table.py
└── ...
You can use different folder name but in that case you must specify it with a command argument:
bigquery-migrations run --migrations-dir bq-migrations
argument | description |
---|---|
--migrations-dir | Name of the migrations directory (optional) |
IMPORTANT!
You have to create your own Migrations first! Jump to Creating Migrations section
To run all of your outstanding migrations, execute the run
command:
bigquery-migrations run
You can specify the Google Cloud Project id with the --gcp-project-id
argument:
bigquery-migrations run --gcp-project-id your-gcp-id
IMPORTANT!
It's cruical to keep the migration_log.json file in place, and not to modify it manualy!
After the first successful run a migration_log.json is created in the migrations directory.
your-project
├── migrations
│ ├── 2024_12_01_120000_create_users_table.py
├── migration_log.json
...
The migration_log.json file content should look like this:
{
"last_migration": "2024_12_10_121000_create_users_table",
"timestamp": "2024-12-18T12:25:54.318426+00:00"
}
To reverse the last migration, execute the rollback
command and pass last
with the --migration-name
argument:
bigquery-migrations rollback --migration-name last
To reverse a specific migration, execute the rollback
command and pass the migration name with the --migration-name
argument:
bigquery-migrations rollback --migration-name 2024_12_10_121000_create_users_table
To reverse all of your migrations, execute the reset
command:
bigquery-migrations reset
Put your service account JSON file in the credentials subdirectory in the root of your project.
your-project
├── credentials
│ ├── gcp-sa.json
...
You can connect to BigQuery with a user account or a service account. A service account is a special kind of account designed to be used by applications or compute workloads, rather than a person. Service accounts don’t have passwords and use a unique email address for identification.
To create a BigQuery service account key
- Sign in to the Google Cloud management console.
- Make sure that you have API enabled on your BigQuery API page. If you don’t see API Enabled, choose Enable.
- On the Service accounts page, choose your BigQuery project, and then choose Create service account.
- On the Service account details page, enter a descriptive value for Service account name. Choose Create and continue. The Grant this service account access to the project page opens.
- For Select a role, choose BigQuery, and then choose BigQuery Admin.
- Choose Continue, and then choose Done.
- On the Service account page, choose the service account that you created.
- Choose Keys, Add key, Create new key.
- Choose JSON, and then choose Create. Choose the folder to save your private key or check the default folder for downloads in your browser.
Put your migrations files in the migrations subdirectory of the root of your project.
your-project
├── migrations
│ ├── 2024_12_01_120000_create_users_table.py
...
The migration class must contain two methods: up
and down
.
The up
method is used to add new dataset, tables, columns etc. to your BigQuery project, while the down
method should reverse the operations performed by the up method.
from google.cloud import bigquery
from bigquery_migrations import Migration
class CreateUsersTable(Migration):
"""
See:
https://github.com/googleapis/python-bigquery/tree/main/samples
"""
def up(self):
# TODO: Set table_id to the ID of the table to create.
table_id = "your_project.your_dataset.example_table"
# TODO: Define table schema
schema = [
bigquery.SchemaField("id", "INTEGER", mode="REQUIRED"),
bigquery.SchemaField("name", "STRING", mode="REQUIRED"),
bigquery.SchemaField("created_at", "TIMESTAMP", mode="NULLABLE"),
]
table = bigquery.Table(table_id, schema=schema)
table = self.client.create_table(table)
print(
"Created table {}.{}.{}".format(table.project, table.dataset_id, table.table_id)
)
def down(self):
# TODO: Set table_id to the ID of the table to fetch.
table_id = "your_project.your_dataset.example_table"
# If the table does not exist, delete_table raises
# google.api_core.exceptions.NotFound unless not_found_ok is True.
self.client.delete_table(table_id, not_found_ok=True)
print("Deleted table '{}'.".format(table_id))
Pattern | yyyy_mm_dd_hhmmss_your_class_name.py |
---|---|
Example filename | 2024_12_10_120000_create_users_table.py |
Example class name | CreateUsersTable |