Bigtable Skill
This skill provides core workflows and guidance for administering and developing with Google Bigtable.
Core Principles
- Control Plane vs. Data Plane:
- Use
gcloud for Control Plane operations: Manage Instances, Clusters, App Profiles, Backups and IAM. Create Tables, Logical Views, Materialized Views and Authorized Views.
- Use
cbt for Data Plane operations: Update Tables, Column Families, and reading/writing data.
- Performance First: Bigtable is a NoSQL database. Efficiency is tied to Row Key design. Always warn about Full Table Scans.
- Client Selection: For production use cases, Java or Go are preferred for their superior performance and feature coverage compared to other languages.
- Observability: When diagnosing performance or hotspotting, ALWAYS mention Key Visualizer (via Cloud Console) as the primary diagnostic tool, followed by hot-tablets tool and table stats in gcloud CLI and
include-stats=full option under cbt read to diagnose slow queries.
[!IMPORTANT]
Safety Rule: Always obtain explicit user confirmation before making non-emulator database changes.
Quick Recipes
1. Querying Data
Use SQL for complex transforms or aggregations and key-value APIs for simpler query patterns.
Note: Use exact match, prefix (_key LIKE 'myprefix%') or range predicates on _key to avoid expensive unbounded scans.
If expensive scans (either unbounded or prefix or range queries scanning a large range) are unavoidable due to multiple access patterns that can’t all be accommodated in a single schema, consider one of these two options:
- If the query will be used in user facing and/or latency sensitive applications, use continuous materialized views with keys optimized for the additional access patterns.
- If secondary access patterns are infrequent, batch patterns like ETL, ML model training or analytical read-only tasks, use Bigtable Data Boost instead.
2. Manipulating Data
Use key-value APIs for insert, update, increment and delete operations. SQL API is read-only.
3. Data Model Definition (DDL)
SQL API doesn't support DDL operations. Table creation, deletion, updates should be made using gcloud CLI. Logical Views and Continuous Materialized Views are defined as SQL queries but they must be created using gcloud CLI.
Reference Guides
- CLI Operations:
- infrastructure_management.md - Provisioning instances, clusters, and table schemas.
- cli_data_access.md - Reading and writing data via the
cbt CLI.
- Design & Discovery:
- schema_design.md - Best practices for row keys and performance with tables and continuous materialized views.
- dataplex.md - Data catalog search for Bigtable assets.
- Querying & Code:
- sql_guide.md - Querying structured row keys via SQL and CLI.
- client_libraries.md - Patterns for high-performance Go/Java/Python code.
Common Workflows
Schema Evolution (DevOps)
- Prefer Terraform for production schema changes to prevent accidental data loss.
- For manual
cbt changes, verify column family GC policies:cbt createfamily [TABLE] [FAMILY]
cbt setgcpolicy [TABLE] [FAMILY] "maxversions=5 AND maxage=30d"
- Reference infrastructure_management.md for full syntax.
1---2name: bigtable3description: Manage Google Bigtable instances/tables, design schemas, and query data using SQL or client libraries. Use for provisioning, schema updates, or code generation.4---56# Bigtable Skill78This skill provides core workflows and guidance for administering and developing with Google Bigtable. 910## Core Principles1112- **Control Plane vs. Data Plane:**13 - Use **`gcloud`** for Control Plane operations: Manage Instances, Clusters, App Profiles, Backups and IAM. Create Tables, Logical Views, Materialized Views and Authorized Views.14 - Use **`cbt`** for Data Plane operations: Update Tables, Column Families, and reading/writing data.15- **Performance First:** Bigtable is a NoSQL database. Efficiency is tied to Row Key design. Always warn about Full Table Scans.16- **Client Selection:** For production use cases, **Java** or **Go** are preferred for their superior performance and feature coverage compared to other languages.17- **Observability:** When diagnosing performance or hotspotting, **ALWAYS** mention **Key Visualizer** (via Cloud Console) as the primary diagnostic tool, followed by hot-tablets tool and table stats in gcloud CLI and `include-stats=full` option under `cbt read` to diagnose slow queries.1819> [!IMPORTANT]20> **Safety Rule:** Always obtain explicit user confirmation before making non-emulator database changes.2122## Quick Recipes2324### 1. Querying Data25Use SQL for complex transforms or aggregations and key-value APIs for simpler query patterns.26*Note: Use exact match, prefix (_key LIKE 'myprefix%') or range predicates on `_key` to avoid expensive unbounded scans.*2728If expensive scans (either unbounded or prefix or range queries scanning a large range) are unavoidable due to multiple access patterns that can’t all be accommodated in a single schema, consider one of these two options:29- If the query will be used in user facing and/or latency sensitive applications, use continuous materialized views with keys optimized for the additional access patterns.30- If secondary access patterns are infrequent, batch patterns like ETL, ML model training or analytical read-only tasks, use Bigtable Data Boost instead. 3132### 2. Manipulating Data33Use key-value APIs for insert, update, increment and delete operations. SQL API is read-only.3435### 3. Data Model Definition (DDL)36SQL API doesn't support DDL operations. Table creation, deletion, updates should be made using gcloud CLI. Logical Views and Continuous Materialized Views are defined as SQL queries but they must be created using gcloud CLI. 3738## Reference Guides3940- **CLI Operations**:41 - [infrastructure_management.md](references/infrastructure_management.md) - Provisioning instances, clusters, and table schemas.42 - [cli_data_access.md](references/cli_data_access.md) - Reading and writing data via the `cbt` CLI.43- **Design & Discovery**:44 - [schema_design.md](references/schema_design.md) - Best practices for row keys and performance with tables and continuous materialized views.45 - [dataplex.md](references/dataplex.md) - Data catalog search for Bigtable assets.46- **Querying & Code**:47 - [sql_guide.md](references/sql_guide.md) - Querying structured row keys via SQL and CLI.48 - [client_libraries.md](references/client_libraries.md) - Patterns for high-performance Go/Java/Python code.4950## Common Workflows5152### Schema Evolution (DevOps)531. **Prefer Terraform** for production schema changes to prevent accidental data loss.542. For manual `cbt` changes, verify column family GC policies:55 ```bash56 cbt createfamily [TABLE] [FAMILY]57 cbt setgcpolicy [TABLE] [FAMILY] "maxversions=5 AND maxage=30d"58 ```593. Reference [infrastructure_management.md](references/infrastructure_management.md) for full syntax.