
Bigtable Basics
FreeStreamline your Google Bigtable management and querying.
Free · Opens the source repo
What Bigtable Basics does
Bigtable Basics is a skill designed for developers and data engineers working with Google Bigtable, a scalable NoSQL database service. This skill provides essential workflows and guidance for provisioning instances and tables, designing efficient schemas, and executing queries. It emphasizes the importance of row key design and performance optimization, which are critical for effective data management in Bigtable. By following the principles outlined in this skill, users can avoid common pitfalls such as full table scans and ensure their applications run efficiently.
The skill covers both control plane and data plane operations. Users are instructed to utilize the gcloud command-line tool for managing instances, clusters, and backups, while the cbt tool is recommended for data manipulation tasks. This clear separation helps streamline the management process and enhances user understanding of Bigtable's architecture. Additionally, the skill provides recipes for querying and manipulating data, including best practices for using SQL and key-value APIs effectively.
For those looking to diagnose performance issues, the skill highlights the Key Visualizer tool in the Cloud Console as a primary resource for understanding access patterns. Users are also guided on how to handle schema evolution and data model definitions, with emphasis on safety precautions to prevent data loss during modifications. Overall, Bigtable Basics is an invaluable resource for anyone involved in developing or maintaining applications that leverage Google Bigtable.
When to use it
Use this skill when provisioning Bigtable instances, designing schemas, or querying data efficiently.
When not to use it
This skill is not suitable for general Cloud SQL administration tasks or when working with databases other than Bigtable.
What you can build with it
Provisioning Bigtable Instances
Quickly set up and configure Bigtable instances using the `gcloud` CLI for your application needs.
Designing Efficient Schemas
Utilize best practices for row key design and schema evolution to enhance performance in your Bigtable applications.
Querying Data Effectively
Implement optimized SQL queries and key-value operations to retrieve data without incurring high costs.
How to install Bigtable Basics
View source1. Install with the skills CLI
npx skills add google/skills/bigtable-basics --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by googleBigtable Basics
This skill provides core workflows and guidance for administering and developing with Google Bigtable.
Core Principles
- Control Plane vs. Data Plane:
- Use
gcloudfor Control Plane operations: Manage Instances, Clusters, App Profiles, Backups and IAM. Create Tables, Logical Views, Materialized Views and Authorized Views. - Use
cbtfor Data Plane operations: Update Tables, Column Families, and reading/writing data.
- Use
- 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=fulloption undercbt readto 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: Provisioning instances, clusters, and table schemas.
- cli_data_access.md: Reading and writing
data via the
cbtCLI.
- 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
cbtchanges, 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" -
Reference infrastructure_management.md for full syntax.
External Resources
Frequently asked questions about Bigtable Basics
Similar skills
ClickHouse Logs Queries
Efficiently manage Supabase logs with ClickHouse SQL.
EF Core D2 Database Diagram Generator
Visualize your EF Core models as D2 diagrams effortlessly.
Safe SQL Execution
Ensure secure SQL execution in Supabase applications.
Oracle to PostgreSQL Migration
Identify migration risks between Oracle and PostgreSQL.
SSMA Console
Streamline Oracle to SQL Server migrations with ease.
SQL Performance Optimization
Enhance SQL query efficiency across all databases.
