Best use case
hbase is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Apache HBase wide-column store on Hadoop. Use for big data.
Teams using hbase should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/hbase/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How hbase Compares
| Feature / Agent | hbase | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Apache HBase wide-column store on Hadoop. Use for big data.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Apache HBase HBase is the Hadoop database. It is a distributed, scalable, big data store. It provides random, real-time read/write access to your Big Data. ## When to Use - **Hadoop Ecosystem**: Deep integration with HDFS, Hive, Spark. - **Petabyte Scale**: Serving billions of rows with low latency. - **Random Access**: When you need random R/W on HDFS data (which is usually WORM - Write Once Read Many). ## Quick Start Uses Java API or Shell. ```bash create 'users', 'info', 'data' put 'users', 'row1', 'info:name', 'Alice' get 'users', 'row1' ``` ## Core Concepts ### Column Families Data is grouped into column families (`info:name`, `info:email`). Families are stored physically together. ### Region Servers HBase scales by splitting tables into "Regions" and hosting them on Region Servers. ### WAL & MemStore Writes go to Write-Ahead-Log (Disk) and MemStore (RAM). When MemStore fills, it flushes to HFile (HDFS). ## Best Practices (2025) **Do**: - **Design Row Keys carefully**: Row keys determine sorting and sharding. "Hotspotting" (sequential keys) is the enemy. Use salt or hashing. - **Pre-split Regions**: Don't start with 1 region. Pre-split based on your known key distribution. - **Use Phoenix**: Apache Phoenix provides a SQL skin over HBase, making it usable like a Relational DB. **Don't**: - **Don't use for small data**: The overhead of HDFS/ZimeKeeper/HBase is huge. Only for >TB scale. - **Don't scan excessively**: Full table scans are MapReduce jobs. ## References - [Apache HBase Reference Guide](https://hbase.apache.org/book.html)
Related Skills
couchbase
Couchbase distributed NoSQL database. Use for mobile and edge.
template
Expert [skill-name] assistance covering [feature 1], [feature 2], and [feature 3]. Use when [working with X], [debugging Y], or [implementing Z].
zsh
Zsh shell with oh-my-zsh. Use for terminal shell.
zed
Zed high-performance collaborative editor. Use for fast editing.
xcode
Xcode Apple development IDE with simulators. Use for iOS/macOS development.
webstorm
WebStorm JavaScript IDE with debugging. Use for web development.
webpack
Webpack module bundler with loaders and plugins. Use for bundling.
warp
Warp modern terminal with AI. Use for terminal work.
vscode
Visual Studio Code editor with extensions and debugging. Use for code editing.
vite
Vite fast build tool with HMR. Use for modern frontend builds.
visual-studio
Visual Studio IDE for Windows with debugging and profiling. Use for .NET development.
vim
Vim text editor with motions, macros, and plugins. Use for terminal editing.