AgentStack
SKILL verified Apache-2.0 Self-run

Bigtable Basics

skill-google-skills-bigtable-basics · by google

>-

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-google-skills-bigtable-basics

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Bigtable Basics? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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:
  • [infrastructuremanagement.md](references/infrastructuremanagement.md):

Provisioning instances, clusters, and table schemas.

  • [clidataaccess.md](references/clidataaccess.md): Reading and writing

data via the cbt CLI.

  • Design & Discovery:
  • [schemadesign.md](references/schemadesign.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:
  • [sqlguide.md](references/sqlguide.md): Querying structured row keys

via SQL and CLI.

  • [clientlibraries.md](references/clientlibraries.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.

  1. For manual cbt changes, first check the existing state by listing the table's column families and GC policies before proposing any modifications:

``bash cbt ls {table} ``

If modifications are needed, create the family or update the GC policy:

``bash cbt createfamily {table} {family} cbt setgcpolicy {table} {family} "maxversions=5 AND maxage=30d" ``

  1. Reference

[infrastructuremanagement.md](references/infrastructuremanagement.md) for full syntax.

External Resources

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.