Overview
HBase Master status console
The Apache HBase Master status console served through nginx on port 80, showing the RegionServer, cluster base stats and user tables on the running standalone node.
HBase Master status console
HBase tables and region visualizer
HBase software attributes
This is a repackaged open source software product wherein additional charges apply for cloudimg support services.
Apache HBase - Production-Ready Distributed NoSQL Store
Deploy a fully configured Apache HBase node on AWS in minutes - not hours. This image delivers HBase preinstalled and running as a managed system service in single-node standalone mode, so you can create tables and store rows immediately after launch, without standing up a multi-node Hadoop and HDFS cluster by hand.
Why This Image Instead of a DIY Install
- Versus manual EC2 setup: Skip the hours of downloading, checksum-verifying, configuring HBase for standalone operation, writing a systemd unit, provisioning a data disk, and hardening the management console. This image handles all of that at launch.
- Versus a self-managed cluster: Get a single-instance standalone topology - the HBase Master, a RegionServer and an embedded ZooKeeper quorum in one JVM against the local filesystem - that behaves like a real HBase for development, testing, single-tenant stores and proof-of-concept work, with a clean upgrade path to a distributed deployment.
- Versus other community images: Benefit from a hardened first-boot process that generates a unique management password per instance (no shared or default credentials), a dedicated data volume for the store, and 24/7 professional support from cloudimg.
Application Stack
- Apache HBase installed under /opt/hbase, run by a dedicated unprivileged service account
- One systemd service running the HBase Master, RegionServer and embedded ZooKeeper in standalone mode
- Headless OpenJDK 11 Java runtime
- All table data, the write-ahead log and the embedded ZooKeeper state on a dedicated EBS data volume - independently resizable for IOPS and capacity scaling
- nginx on port 80 publishing the read-only HBase Master status console behind HTTP Basic authentication, plus an unauthenticated health endpoint
The HBase Data Model
HBase is a wide-column store modeled on Google Bigtable: tables are sparse, distributed, sorted maps indexed by row key, column family and timestamp. Use the HBase shell or the Java, REST and Thrift APIs to create tables, put and get rows, and run scans. It is well suited to very large tables with billions of rows and millions of columns, random real-time read and write access, and append-heavy time-series workloads.
Security
Secure First Boot: A one-shot service generates a fresh management password per instance, writes it to a root-only file, and stages the nginx credential store before the console is reachable. No shared or default credentials ship in the image.
Network Isolation: Every HBase service binds to loopback only. The single public surface is nginx on port 80 (basic auth) and SSH on port 22. Deploy in a private VPC subnet and use security groups to restrict access.
Encryption at Rest: The dedicated data volume holding the store can leverage AWS EBS encryption. Enable EBS encryption when launching the instance or use encrypted snapshots.
Master Status Console
The HBase Master status UI is served on port 80 through nginx. Sign in with the generated credentials to inspect the cluster status, the RegionServer, region assignments, tables and storage utilisation.
Use Cases
- Random real-time read and write access to very large sparse tables
- Development and testing against the HBase API before scaling to a distributed cluster
- Append-heavy time-series and event storage for analytics staging
- Proof-of-concept and evaluation of Apache HBase
24/7 cloudimg Support
Technical support by email and live chat covers deployment, schema and data-model design, capacity and data-volume sizing, scaling toward a distributed cluster on HDFS, and HBase administration.
All product and company names are trademarks or registered trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
Highlights
- Zero-setup NoSQL big-data store: Apache HBase launches as a systemd-managed service - the Master, a RegionServer and embedded ZooKeeper in one JVM - with the Master status console on port 80. Skip hours of manual installation, standalone configuration, data-disk provisioning and credential hardening that a DIY EC2 deployment requires. You can create tables and store rows within minutes of instance launch.
- Dedicated data volume with independent scaling: All table data, the write-ahead log and the embedded ZooKeeper state reside on a dedicated EBS volume mounted by filesystem UUID, so you can resize it independently for IOPS and capacity, and take EBS snapshots without touching the OS disk. The single-node standalone topology provides a clean upgrade path to a distributed HDFS-backed cluster.
- Hardened security from first boot: Every instance generates a unique management password stored in a root-only file - no shared or default credentials ever ship. All HBase services bind to loopback; the only public surface is an nginx basic-auth console on port 80 and SSH. Backed by 24/7 cloudimg technical support via email and live chat.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
Free trial
- ...
Dimension | Description | Cost/hour |
|---|---|---|
m5.large Recommended | m5.large | $0.08 |
t2.micro | t2.micro instance type | $0.04 |
t3.micro | t3.micro instance type | $0.04 |
c5a.12xlarge | c5a.12xlarge instance type | $0.24 |
c5a.16xlarge | c5a.16xlarge instance type | $0.24 |
c5a.24xlarge | c5a.24xlarge instance type | $0.24 |
c5a.2xlarge | c5a.2xlarge instance type | $0.24 |
c5a.4xlarge | c5a.4xlarge instance type | $0.24 |
c5a.8xlarge | c5a.8xlarge instance type | $0.24 |
c5a.large | c5a.large instance type | $0.08 |
Vendor refund policy
Refunds available on request.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Initial release of Apache HBase 2.5.15 single-node standalone NoSQL big-data store.
Additional details
Usage instructions
Connect via SSH on port 22 as the default login user for your operating system variant (the user guide lists it per variant). The HBase Master status console is served on port 80: browse to http://<instance-public-ip>/ and sign in as user admin with the generated password. Retrieve the credentials with: sudo cat /root/hbase-credentials.txt. HBase runs in single-node standalone mode; use the HBase shell on the instance (sudo -u hbase /opt/hbase/bin/hbase shell) to create tables, put rows and run scans. All table data, the write-ahead log and the embedded ZooKeeper state live on a dedicated data volume mounted at /var/lib/hbase.
Resources
Vendor resources
Support
Vendor support
cloudimg Support - 24/7 Technical Assistance
cloudimg provides round-the-clock technical support for this Apache HBase image via email and live chat. Our engineers assist with:
- Initial deployment and instance sizing guidance
- HBase Master status console access and credential management
- Schema and data-model design
- Data-volume sizing and capacity planning
- Scaling toward a distributed HDFS-backed cluster
- HBase and ZooKeeper administration
- Troubleshooting connectivity and performance issues
Response Times: Critical issues receive a one-hour average response time.
Contact: Email support@cloudimg.co.uk or reach us via live chat.
Getting Started
- Launch the image and confirm the dedicated data volume is attached.
- Retrieve the generated credentials from /root/hbase-credentials.txt via SSH.
- Open port 80 in your security group and browse to the instance public IP to reach the Master status console; sign in as admin.
- Use the HBase shell on the instance to create tables and store rows.
For sizing recommendations, production architecture planning, or any issues including requesting refunds, contact support@cloudimg.co.uk .
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
Similar products
