HBaseWD is aimed to help distribute writes of records with sequential row keys in HBase (and avoid RegionServer hotspotting). Good introduction can be found here.
We recently published 0.1.0 version of the library to Sonatype public maven repository. Thus, integration in your project became much easier:
<repositories> <repository> <id>sonatype release</id> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> </repositories>
<dependency> <groupId>com.sematext.hbasewd</groupId> <artifactId>hbasewd</artifactId> <version>0.1.0</version> </dependency>
HBaseHUT is aimed to help in situations when you need to update a lot of records in HBase in read-modify-write style. Good introduction can be found here.
We recently published 0.1.0 version of this library to Sonatype public maven repository too. Integration info:
<repositories> <repository> <id>sonatype release</id> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> </repositories>
<dependency> <groupId>com.sematext.hbasehut</groupId> <artifactId>hbasehut</artifactId> <version>0.1.0</version> </dependency>
For running (MR jobs) on hadoop-2.0+ (which is a part of CDH4.1+) use 0.1.0-hadoop-2.0 version:
<dependency> <groupId>com.sematext.hbasehut</groupId> <artifactId>hbasehut</artifactId> <version>0.1.0-hadoop-2.0</version> </dependency>
Thank you to all contributors and users of the libraries!
Next article
Java Logging Basics: Concepts, Tools, and Best Practices
Imagine you're a detective trying to solve a crime, but all the evidence is invisible. Sounds impossible, right? That's exactly...
Best Web Transaction Monitoring Tools in 2024
Websites are no longer static pages. They’re dynamic, transaction-heavy ecosystems where every click, form submission, and login matters. Whether you're...
17 Linux Log Files You Must Be Monitoring
Imagine waking up to a critical system failure that has brought your business operations to a standstill. Panic sets in...