bq: The bq command-line tool is a Python-based command-line tool for BigQuery

The bq command-line tool is a Python-based command-line tool designed specifically for interacting with Google BigQuery, a fully-managed, serverless data warehouse provided by Google Cloud Platform. With bq, users can perform various tasks related to managing and querying data in BigQuery.

Here are some key features and use cases of the bq command-line tool:

  • Data Management: The bq tool allows you to manage datasets, tables, and views within BigQuery. You can create new datasets, create tables, modify table schemas, and delete datasets or tables as needed. It also provides commands for importing and exporting data between BigQuery and external storage, such as Google Cloud Storage.
  • Querying Data: With bq, you can execute SQL queries against your BigQuery datasets and retrieve results directly from the command line. It supports standard SQL syntax, including advanced features like joins, aggregations, and subqueries. You can run interactive queries or execute saved queries from files.
  • Job Management: BigQuery processes queries and other tasks as asynchronous jobs. The bq tool allows you to manage these jobs, including monitoring their status, canceling running jobs, and listing completed or running jobs. This helps you keep track of query execution and manage resources efficiently.
  • Table Operations: bq provides commands to perform various operations on BigQuery tables. You can copy tables, load data into tables from various sources, export table data to different formats, and even perform table partitioning and clustering for optimizing query performance.
  • Authentication and Access Control: The bq tool integrates with Google Cloud authentication mechanisms, allowing you to authenticate and authorize access to BigQuery using your Google Cloud credentials. You can manage access controls, assign roles to users or service accounts, and work with BigQuery’s security features.
  • Integration with Other Tools: bq is designed to work well with other command-line tools and scripting environments. It supports features like output formatting, allowing you to format query results as JSON, CSV, or other formats suitable for further processing with other tools or scripts.

The bq command-line tool provides a convenient and flexible way to interact with BigQuery, making it easier to manage datasets, execute queries, and perform various data-related tasks. Its Python-based implementation makes it easily accessible and extendable, allowing you to integrate it into your workflows or scripts. Whether you are a data analyst, data engineer, or developer, bq can be a valuable tool for working with data in Google BigQuery.

bq Command Examples

1. Run query against a BigQuery table using standard SQL, add –dry_run flag to estimate the number of bytes read by the query:

# bq query --nouse_legacy_sql 'SELECT COUNT(*) FROM DATASET_NAME.TABLE_NAME'

2. Run a parameterized query:

# bq query --use_legacy_sql=false --parameter='ts_value:TIMESTAMP:2016-12-07 08:00:00' 'SELECT TIMESTAMP_ADD(@ts_value, INTERVAL 1 HOUR)'

3. Create a new dataset or table in the US location:

# bq mk --location=US dataset_name.table_name

4. List all datasets in a project:

# bq ls --filter labels.key:value --max_results integer --format=prettyjson --project_id project_id

5. Batch load data from a specific file in formats such as CSV, JSON, Parquet, and Avro to a table:

# bq load --location=location --source_format=[CSV|JSON|PARQUET|AVRO] dataset.table path_to_source

6. Copy one table to another:

# bq cp dataset.OLD_TABLE dataset.new_table

7. Print help:

# bq help
Related Post