Quantcast
Channel: CodeSection,代码区,数据库(综合) - CodeSec
Viewing all articles
Browse latest Browse all 6262

HBase Adds MultiWAL Support

$
0
0

HBase Adds MultiWAL Support

Written by Kay Ewbank Thursday, 02 February 2017

A new version of Apache HBase is available with date-based tiered compactions and a CoDel based RPC scheduler.

Apache HBase is Hadoop's open-source, distributed, versioned, non-relational database, modeled after Google's BigTable.


HBase Adds MultiWAL Support

Many of the improvements to HBase 1.3.0 are bug fixes, but there are a number of new features.

The date-based tiered compactions have been added to solve the problem where data is mainly written sequentially by when it arrived at the back end, while data is read mainly in time-range scans of certain column families. In the previous version, the store file layout can't be used to make full use of the scan api feature to skip store files with data out of the time range. Date-based tiered compaction overcomes this problem, meaning that records that are old enough to have 'expired' can be dropped when the store is compacted.

The support for Multi WAL (Write Ahead Logs) has also been improved. Without Multi WAL support, each region on a RegionServer writes to the same WAL. If the RegionServer is busy because it hosts several regions, and each write to the WAL is serial, the WAL can degrade overall performance. Multi WAL means a RegionServer can write multiple WAL streams in parallel. Tests of the new feature show improvements of 20 percent in average latency when running on pure SATA disks, and 40 percent on SATA-SSD disks.

The RPC request scheduler is another feature that has been improved. The previous version could operate in two modes: simple FIFO, and "partial" deadline, where deadline constraints were only imposed on long-running scan requests. The updated version adds support for scheduling based on the controlled delay (CoDel) algorithm that is used to combat bufferbloat. This prevents long standing call queues caused by discrepancy between request rate and available throughput. The CoDel algorithm provides active queue management with controlled delay. A defined threshold is set, and when the minimum delay goes over the threshold, calls are dropped to take the delay back under the threshold.

Other improvements include Maven archetypes for HBase client applications; a throughput controller for flushes; bulk loaded HFile replication; and reduced memory allocation in the RPC layer.


HBase Adds MultiWAL Support
More Information

HBase Site

Release Announcement

Related Articles

Apache Spark 2.0 Released

First Hybrid Open-Source RDBMS Powered By Hadoop and Spark

HBase 1.0 Released

To be informed about new articles on IProgrammer,sign up for ourweekly newsletter, subscribe to theRSSfeedandfollow us on, Twitter, Facebook , Google+ or Linkedin .


HBase Adds MultiWAL Support

Asus Tinker Board Takes On Raspberry Pi3

23/01/2017

Asus has launched a single board computer which shares the general layoutof the Raspberry Pi but comes with double the memory and a more powerful CPU, making it almost twice as fast on benchmark[...]

+ Full Story

//No Comment - Let's Encrypt, IoT Security & Obfuscation

10/01/2017

No domain left behind: Is Let's Encrypt democratizing encryption?

Authentication Protocols for Internet of Things: A Comprehensive Survey

Obfuscation using Encryption

+ Full Story

More News Big Increase in AI, Cognitive and Cloud Computing Patents in 2016 Google Slides API Adds Text Formatting Android Instant Apps Enter Live Testing Top 10 From Around the Web - eCommerce Development Software Makes Cheap Dumb Robots Interesting - Bots_Alive Pi To Take Over The Desktop? Mozilla Firefox Replacing Gecko With Servo Get Ready for Expanded Pwn2Own 2017 IoT Home Inspector Challenge Top 10 From Around The Web: javascript Web Development Res

Viewing all articles
Browse latest Browse all 6262

Trending Articles