Build queries in the console

You can query and view your Bigtable data by using the Bigtable Studio query builder. The query builder is an interactive form in the Google Cloud console that lets you build a query, run it against a table, and then view the results in the console.

The Bigtable Studio query builder lets you use drop-down selectors to specify a combination of query clauses without needing to write an application or use a CLI. When you run the query, the console makes a call to the Bigtable Data API, which returns data that matches your query.

This document describes how to use the query builder and offers tips on optimizing your queries. Before you read this page, you should be familiar with the Bigtable overview .

Queries run in the query builder are subject to the same pricing and quotas as any other query sent to a table.

When to use the query builder

The ability to query your Bigtable data in the Google Cloud console is helpful when you need to do the following:

  • Quickly get a visual representation of your table's schema.
  • Verify that certain data was successfully written.
  • Validate data integrity during a migration.
  • Debug possible data issues.
  • Preview the results that a specific combination of clauses returns before you use them in your code. This can be especially helpful for new Bigtable users as well as experienced users who don't want to use the cbt CLI .

Before you begin

To get the permissions that you need to use the query builder, ask your administrator to grant you the Bigtable Reader (roles/bigtable.reader) IAM role on the project. For more information about granting roles, see Manage access.

This predefined role contains the permissions required to use the query builder. To see the exact permissions that are required, expand the Required permissions section:

Required permissions

The following permissions are required to use the query builder:

  • bigtable.tables.get
  • bigtable.instances.get
  • bigtable.appProfiles.list
  • bigtable.tables.list
  • bigtable.tables.readRows

You might also be able to get these permissions with custom roles or other predefined roles.

If you don't have a table to query, you can create a small test table and run your queries against it.

Open the query builder

When you open the query builder, a default query is run and displayed for the first table alphabetically in the instance. The default query is run using the default app profile, and up to 100 rows are returned.

  1. Open the list of Bigtable instances in the Google Cloud console.

    Open the instance list

  2. Click the name of the instance that contains the table that you want to query.

  3. In the navigation pane, click Bigtable Studio. The Bigtable Studio page opens in query builder mode. The Explorer pane provides a list of tables in the instance, and the Query results pane shows the results of the default query.

  4. Optional: Collapse the Explorer pane to make the query builder pane larger.

Data display format

Query builder results are displayed in a table. The first heading and column is Row key. The remaining headings each represent a column in the Bigtable table, expressed as the column family and column qualifier separated by a colon. For example, the heading cell_plan: data_plan_01gb indicates that values in that column are from the data_plan_01gb column in the cell_plan column family.

drop-down

Only the most recent value for a column is returned. Timestamps are hidden by default, but you can click the toggle to display them.

Select a table

Use the Table drop-down to select the ID of the table that you want to query.

Optional: Specify an app profile

You can use an app profile that you create specifically for use with the query builder. This can be helpful, for example, when you want to isolate the query traffic by using a different cluster than the one used by your primary application.

To use a different app profile to run your next query, follow these steps.

  1. Click Add to query.
  2. Click Change app profile (default). A new drop-down is displayed.
  3. Use the App profile drop-down and choose from the list of the instance's app profiles.

To read more about the advantages of using different app profiles for different workloads, see About app profiles . To learn how to create an app profile, see Create and configure app profiles .

If your table is in an instance that uses replication, configure your app profile to read from the cluster that is geographically closest to you.

Add clauses to the query and then run it

  1. After you've selected the table and app profile, add clauses to the query. See the next section for details on the available clauses.
  2. After you've added all your clauses, click Run.
  3. View the results.

Query clauses

You use the query builder to add clauses to your query. When you run the query, the query builder creates and sends a read request to your table. To learn more about read requests, see Reads.

The row key, row key range, and row key prefix clauses determine the rows that are fetched from storage. The row key regex, columns, and time range clauses add a filter to the generated read request. Filters that you use in the query builder work the same as when you use them in the client libraries. For details about Bigtable filters and how using them can affect performance, see Filters and Use filters .

Specify row key

To retrieve a single row from the table, provide a row key value. You can add multiple row key clauses.

  1. Click Add to query.
  2. In the drop-down list, select Row key.
  3. Enter the exact value of the row key for which you want to view values.

Specify a row key range

To retrieve a range of rows from the table, specify a start and end row key. Bigtable stores data in lexicographic order by row key.

  1. Click Add to query.
  2. In the drop-down list, select Row key range.
  3. Enter the complete start row key.
  4. Enter the complete end row key.

Specify a row key prefix

To retrieve only rows whose row keys begin with a specific set of characters, filter by row key prefix. A row key prefix is the first N characters of a row key. By convention, there is often a hashtag, pipe, or other symbol between the prefix and the rest of the row key.

  1. Click Add to query.
  2. In the drop-down list, select Row key prefix.
  3. Enter a row key prefix. You don't need to enter any wildcard symbols.

Filter by row key regex

To get only rows whose row key values match a specified regular expression, use a row key regex filter. For better performance, add a row key range or row key prefix clause to the query before you add the row key regex filter. For guidance on composing your regex, see Row key regex .

  1. Click Add to query.
  2. In the drop-down list, select Row key regex.
  3. Enter a regular expression that uses re2 syntax

Filter by column

To specify one or more columns to include in the query, add a columns clause, choosing the column family and column qualifier for each column that you want to filter by. The read request that is generated when you add this clause includes the column family regex filter and the column range filter .

  1. Click Add to query.
  2. In the drop-down list, select Columns.
  3. Click in the Columns field. A list of column families is displayed.
  4. Click a column family ID. A list of column qualifiers is displayed.
  5. Click a column qualifier.

Filter by time range

To retrieve only cells with a timestamp within a certain range, add a time range clause, which uses the timestamp range filter .

  1. Click Add to query.
  2. In the drop-down list, select Time range.
  3. Enter a start timestamp.
  4. Enter an end timestamp.

Provide a timestamp in one of the following formats:

  • A Unix timestamp in microseconds, such as 3023483279876000
  • YYYY-MM-DDThh:mm:ss:ss[z]
  • YYYY/MM/DD-hh:mm:ss.sss[z]
  • MM/DD/YYYY
  • YYYY/MM/DD

The optional T is a literal that indicates time, and the optional z indicates UTC time rather than local time. For more information about timestamp formats, see ISO 8601 .

Specify a limit

To specify a maximum number of rows returned, add a limit clause.

  1. Click Add to query.
  2. In the drop-down list, select Limit.
  3. Enter a number from 1 to 1,00.

Limitations

The following limitations apply to the query builder.

  • 1,000 characters per cell — Bigtable returns a maximum of 1,000 characters per cell. If a cell contains more than 1,000 characters, a truncated result is displayed, annotated with the number of characters not displayed.
  • 100 column maximum — Bigtable returns the first 100 columns in each row that match the query. Column families are not stored in any particular order, but columns are sorted lexicographically within their column family.
  • 1,000 row maximum — The query builder returns a maximum of the first 1,000 rows of data that match your query.
  • Base64 — Bigtable makes a best effort to accurately display Base64-encoded data, but results are not guaranteed. If Bigtable is unable to display the data in a cell, it displays the cell value's size in bytes instead.
  • Older data — You can only retrieve the most recent cell (or version) in the columns that you query. For details on this concept, see Bigtable storage model and General concepts

  • Serialized data — Data stored as protocol buffers is not displayed correctly in the query results. JSON data is better supported but not guaranteed to look right.

  • Artificial timestamps — If your application assigns non-timestamp numbers to the timestamp property of cells when it writes data to your table, you can use time range filters in your query to get a range of the values that you use instead of timestamps, as long as you specify them as microseconds. To understand why your table data might use artificial timestamps, see Timestamps

What's next