/bigtable-basics
Assists in provisioning instances/tables, designing performant schemas, and querying data in Bigtable. Use when designing Bigtable row keys, configuring column families, writing SQL queries or client library code (Java, Go, Python) for Bigtable, or diagnosing
$ npx -y skills add google/skills --skill bigtable-basics --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/bigtable-basics
Context preview
The summary Claude sees to decide when to auto-load this skill.
Assists in provisioning instances/tables, designing performant schemas, and querying data in Bigtable. Use when designing Bigtable row keys, configuring column families, writing SQL queries or client library code (Java, Go, Python) for Bigtable, or diagnosing
SKILL.md
bigtable-basics.SKILL.mdname: bigtable-basics
metadata:
category: Databases
description: >-
Assists in provisioning instances/tables, designing performant schemas, and querying data in Bigtable. Use when designing Bigtable row keys, configuring column families, writing SQL queries or client library code (Java, Go, Python) for Bigtable, or diagnosing performance/hotspotting issues. Also use when provisioning Bigtable clusters using gcloud or cbt CLIs. Don't use for generic Cloud SQL administration.
Bigtable Basics
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, prefer **Java** or **Go**
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 because it provides the most granular view of access patterns across row keys. This should be followed by the hot-tablets tool and table stats in gcloud CLI and `include-stats=full` option under `cbt read` to diagnose slow queries.
> [!IMPORTANT] **Safety Rule:** You MUST obtain explicit user confirmation before > making non-emulator database changes. You MUST mention this safety requirement > when providing commands or instructions that modify the database structure or > data.
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. Recommend explicit row ranges (`_key BETWEEN 'start' AND 'end'`) as a more performant alternative to prefix matches where possible.*
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](references/infrastructure_management.md):
Provisioning instances, clusters, and table schemas.
- [cli_data_access.md](references/cli_data_access.md): Reading and writing
data via the `cbt` CLI.
- **Design & Discovery**:
- [schema_design.md](references/schema_design.md): Best practices for row
keys and performance with tables and continuous materialized views.
- [dataplex.md](references/dataplex.md): Data catalog search for Bigtable
assets.
- **Querying & Code**:
- [sql_guide.md](references/sql_guide.md): Querying structured row keys
via SQL and CLI.
- [client_libraries.md](references/client_libraries.md): Patterns for
high-performance Go/Java/Python code.
Common Workflows
Schema Evolution (DevOps)
1. **Prefer Terraform** for production schema changes to prevent accidental data loss. 2. For manual `cbt` changes, first check the existing state by listing the table's column families and GC policies before proposing any modifications:
cbt ls {table}If modifications are needed, create the family or update the GC policy:
cbt createfamily {table} {family}
cbt setgcpolicy {table} {family} "maxversions=5 AND maxage=30d"3. Reference [infrastructure_management.md](references/infrastructure_management.md) for full syntax.
External Resources
- [Cloud Bigtable Documentation](https://cloud.google.com/bigtable/docs)
- [Bigtable SQL Reference](https://cloud.google.com/bigtable/docs/reference/sql)
- [cbt CLI Reference](https://cloud.google.com/bigtable/docs/cbt-reference)
- [gcloud bigtable Reference](https://cloud.google.com/sdk/gcloud/reference/bigtable)
Read more
name: bigtable-basics metadata: category: Databases description: >- Assists in provisioning instances/tables, designing performant schemas, and querying data in Bigtable. Use when designing Bigtable row keys, configuring column families, writing SQL queries or client library code (Java, Go, Python) for Bigtable, or diagnosing performance/hotspotting issues. Also use when provisioning Bigtable clusters using gcloud or cbt CLIs. Don't use for generic Cloud SQL administration.
Bigtable Basics
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, prefer **Java** or **Go**
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 because it provides the most granular view of access patterns across row keys. This should be followed by the hot-tablets tool and table stats in gcloud CLI and `include-stats=full` option under `cbt read` to diagnose slow queries.
> [!IMPORTANT] **Safety Rule:** You MUST obtain explicit user confirmation before > making non-emulator database changes. You MUST mention this safety requirement > when providing commands or instructions that modify the database structure or > data.
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. Recommend explicit row ranges (`_key BETWEEN 'start' AND 'end'`) as a more performant alternative to prefix matches where possible.*
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](references/infrastructure_management.md):
Provisioning instances, clusters, and table schemas.
- [cli_data_access.md](references/cli_data_access.md): Reading and writing
data via the `cbt` CLI.
- **Design & Discovery**:
- [schema_design.md](references/schema_design.md): Best practices for row
keys and performance with tables and continuous materialized views.
- [dataplex.md](references/dataplex.md): Data catalog search for Bigtable
assets.
- **Querying & Code**:
- [sql_guide.md](references/sql_guide.md): Querying structured row keys
via SQL and CLI.
- [client_libraries.md](references/client_libraries.md): Patterns for
high-performance Go/Java/Python code.
Common Workflows
Schema Evolution (DevOps)
1. **Prefer Terraform** for production schema changes to prevent accidental data loss. 2. For manual `cbt` changes, first check the existing state by listing the table's column families and GC policies before proposing any modifications:
cbt ls {table}If modifications are needed, create the family or update the GC policy:
cbt createfamily {table} {family}
cbt setgcpolicy {table} {family} "maxversions=5 AND maxage=30d"3. Reference [infrastructure_management.md](references/infrastructure_management.md) for full syntax.
External Resources
- [Cloud Bigtable Documentation](https://cloud.google.com/bigtable/docs)
- [Bigtable SQL Reference](https://cloud.google.com/bigtable/docs/reference/sql)
- [cbt CLI Reference](https://cloud.google.com/bigtable/docs/cbt-reference)
- [gcloud bigtable Reference](https://cloud.google.com/sdk/gcloud/reference/bigtable)
This repository contains Agent Skills for Google products and technologies, including Google Cloud. This repository is under active development.
Repo: google/skills
Other skills on google-skills.
- /data-manager-api-audience-ingestion
Guides developers through managing (adding, removing, and clearing) audience members for Google products using the Data Manager API and its associated client libraries. Use this skill when the user wants to upload audience members, remove specific users, or clear/replace an
Open skill - /data-manager-api-event-ingestion
Guides developers through implementing event and conversion ingestion to Google products using the Data Manager API /v1/events/ingest endpoint and its associated client libraries. Use this skill when the user wants to upload offline conversions, enhanced conversions for leads,
Open skill - /data-manager-api-setup
Guides developers through client library installation and authentication setup steps for the Data Manager API. Use this skill when a user is getting started with the Data Manager API and needs to setup their local environment, install the client library, or setup access to the
Open skill - /google-ads-api-account-diagnostics
Diagnoses Google Ads account performance issues such as conversion loss (value or volume), low lead flow/volume, and lost impression share (opportunities) due to ad rank, bids, or budgets. Use when troubleshooting sudden performance drops, analyzing campaign impression share
Open skill - /google-ads-api-mcp-setup
Guides developers through downloading, configuring, and installing the official open-source Google Ads MCP Server. Use this skill when a user wants to connect their AI assistant (such as Gemini, Claude Code, or Cursor) to their Google Ads account to query campaigns or retrieve
Open skill - /google-ads-api-quickstart
Guides developers through Google Ads API quickstart: credential setup, choosing from 6 client libraries/REST, configuring environments, and running a "retrieve campaigns" script. Troubleshoots common setup errors: USER_PERMISSION_DENIED, login_customer_id issues, and
Open skill

