HBase Performance Tuning

Source: Internet
Author: User
Tags compact
Because the official BookPerformanceTuning section does not index by configuration item, it cannot achieve quick query. So I re-organized the original text with the configuration item drive and added some of my own understandings. If there is any error, please correct me. Configuration Optimization zookeeper. session. timeout default value: 3 minutes (180000 ms) Description: RegionSe

Because the Performance Tuning section of the official Book does not index by configuration item, quick query cannot be achieved. So I re-organized the original text with the configuration item drive and added some of my own understandings. If there is any error, please correct me. Configuration Optimization zookeeper. session. timeout default value: 3 minutes (180000 ms) Description: RegionSe

Because the Performance Tuning section of the official Book does not index by configuration item, quick query cannot be achieved. So I re-organized the original text with the configuration item drive and added some of my own understandings. If there is any error, please correct me.

Configuration Optimization

Zookeeper. session. timeout
Default Value: 3 minutes (180000 ms)
Description: The Connection timeout between RegionServer and Zookeeper. After the time-out period expires, the ReigonServer will be removed from the RS cluster list by Zookeeper. After the HMaster receives the removal notification, it will re-balance the regions responsible for this server to allow other surviving regionservers to take over.
Optimization:
This timeout determines whether the RegionServer can promptly failover. Set to 1 minute or lower, which can reduce the failover time extended due to wait timeout.
However, it should be noted that for some Online applications, RegionServer takes a short time from downtime to recovery (transient network disconnection, crash, and other faults can be quickly involved in O & M ), if you reduce the timeout time, the loss will not be worth the candle. The reason is that when the ReigonServer is officially removed from the RS cluster, the HMaster starts to perform the balance (so that other RS can be restored Based on the WAL logs recorded by the faulty machine ). When the faulty RS is manually recovered, this balance action is meaningless, which will result in uneven load and bring more burden to RS. In particular, for scenarios with fixed regions allocation.

Hbase. regionserver. handler. count
Default Value: 10
Description: The number of I/O threads that the RegionServer requests process.
Optimization:
The optimization of this parameter is closely related to the memory.
A small number of IO threads are suitable for Big PUT scenarios with high memory consumption for processing a single request (large-capacity single PUT or scan with a large cache) or the memory of the ReigonServer is relatively tight.
A large number of IO threads are suitable for scenarios with low memory consumption and high TPS requirements for a single request. When setting this value, the main reference is monitoring memory.
Note that if the number of region servers is small and a large number of requests are on the same region, the read/write lock caused by memstore triggering flush will affect the global TPS, the higher the number of IO threads, the better.
Enabling RPC-level logging is enabled during stress testing to monitor the memory consumption and GC status of each request at the same time. At last, the number of I/O threads is adjusted through multiple stress testing results.
Here is a case? Hadoop and HBase Optimization for Read Intensive Search Applications. The author sets the number of I/O threads to 100 on SSD machines for reference only.

Hbase. hregion. max. filesize
Default Value: 256 M
Description: Maximum storage space of a single Reigon on the current ReigonServer. If a single Region exceeds this value, the Region is automatically split into smaller region.
Optimization:
Small region is friendly to split and compaction, because it splits storefile in region or compact small region quickly and consumes less memory. The disadvantage is that split and compaction are frequent.
In particular, a small number of region shards are constantly split and compaction, which may cause great fluctuations in the cluster response time. A large number of region not only causes management trouble, but also causes some Hbase bugs.
Generally, less than 512 is a small region.

Large region is not suitable for split and compaction, because a compact and split operation may cause a long pause, which has a great impact on the application's read/write performance. In addition, large region means a large storefile, and compaction is also a challenge to memory.
Of course, the big region also has its potential. In your application scenario, if the traffic volume at a certain point in time is low, compact and split can successfully complete split and compaction, and ensure stable read/write performance for most of the time.

Since split and compaction affect performance, is there a way to remove them?
Compaction cannot be avoided, but split can be automatically adjusted to manual.
By increasing the value of this parameter to a hard-to-reach value, such as 100 GB, auto split can be indirectly disabled (RegionServer does not split region that has not reached GB ).
Combined with the RegionSplitter tool, manual split is required when split is required.
Manual split is much more flexible and stable than automatic split. On the contrary, the management cost is not much higher. It is recommended for online real-time systems.

In terms of memory, the small region is flexible in setting the memstore size value, while the large region is too large or too small. After the Conference, the IO wait of the app increases during the flush process, if it is too small, the read performance will be affected due to too many store files.

Hbase. regionserver. global. memstore. upperLimit/lowerLimit

Default Value:0.4/0.35
Upperlimit description: Hbase. hregion. memstore. flush. size is used to flush all memstores of a Region when the total size of all memstores in a single region exceeds the specified value. The flush of RegionServer is asynchronously processed by adding a queue to the request and simulating the production consumption mode. There is a problem here. When the queue is too late to consume and a large backlog of requests are generated, the memory may increase sharply. The worst case is to trigger OOM.
This parameter prevents excessive memory usage. When the total memory occupied by all region memstores in the ReigonServer reaches 40% of heap, HBase forcibly blocks all updates and flush these region to release the memory occupied by all memstores.
LowerLimit description: Same as upperLimit, but when lowerLimit occupies 35% of Heap memory for all region memstores, it does not flush all memstores. It will find a region with the largest memory usage in memstore and perform some flush operations. At this time, write updates will still be blocked. LowerLimit is a remedy before all region forces flush to cause performance degradation. In the log, it is displayed as "** Flush thread woke up with memory above low water ."
Optimization: This is a Heap memory protection parameter. The default value is applicable to most scenarios.
Parameter adjustment affects read/write. If the write pressure is high and the threshold value is often exceeded, the hfile of the read cache is reduced. block. cache. size increases the threshold value, or the read cache size is not modified when the Heap margin is large.
If the threshold value is not exceeded under high pressure, we recommend that you reduce the threshold value and perform another stress test to ensure that the number of triggers is not too large. When there is more Heap margin, increase hfile. block. cache. size improves read performance.
Is there another possibility? Hbase. hregion. memstore. flush. size remains unchanged, but RS maintains excessive region. You must know that the number of region directly affects the memory usage.

Hfile. block. cache. size

Default Value0.2
Description: The percentage of Heap size occupied by the read cache of storefile. 0.2 indicates 20%. This value directly affects the data read performance.
Optimization: Of course, the larger the value is, the better. If the write ratio is much less than the read ratio, it is okay to open to 0.4-0.5. If the read/write status is balanced, it is about 0.3. If you write more data than read data, use the default setting. When setting this value, you also need to refer? Hbase. regionserver. global. memstore. upperLimit ?, This value is the maximum percentage of memstore to heap. One parameter affects reading and the other parameter affects writing. If the sum of the two values is greater than 80-90%, OOM risks may occur.

Hbase. hstore. blockingStoreFiles

Default Value:7
Description: When there are more than 7 storefiles in the Store (Coulmn Family) in a region during flush, all write requests in the block are compaction to reduce the number of storefiles.
Optimization: Block write requests will seriously affect the response time of the Current regionServer, but too many storefiles will also affect read performance. In practical applications, you can set the value to an infinitely large value to obtain a smoother response time. If you are able to tolerate large fluctuations in the response time, you can adjust it by default or based on your own scenarios.

Hbase. hregion. memstore. block. multiplier

Default Value:2
Description: When the memory occupied by memstore in a region exceeds the size of hbase. hregion. memstore. flush. size twice, all requests of the region are blocked, flush is performed, and the memory is released.
Although we set the total memstores memory size occupied by region, such as 64 M, imagine that at the end of 63.9M, I Put a M data, at this time, the size of memstore will instantly soar to exceed the expected hbase. hregion. memstore. flush. several times the size. This parameter is used to block all requests when the memstore size exceeds hbase. hregion. memstore. flush. size twice.
Optimization: The default value of this parameter is relatively reliable. If you predict that your normal application scenarios (excluding exceptions) will not experience unexpected write or write volume control, keep the default value. Under normal circumstances, your Write Request volume will often grow to several times of normal, so you should increase this multiple and adjust other parameter values, such as hfile. block. cache. size and hbase. regionserver. global. memstore. upperLimit/lowerLimit to reserve more memory to prevent HBase server OOM.

Hbase. hregion. memstore. mslab. enabled

Default Value:True
Description: Reduces Full GC caused by memory fragments and improves overall performance.
Optimization: See http://kenwublog.com/avoid-full-gc-in-hbase-using-arena-allocation for details

Others

Enable LZO Compression
Compared with Hbase's default GZip, LZO has higher performance and compression. For more information, see?Using LZO Compression.LZO is a good choice for developers who want to improve HBase read/write performance. For developers who are very concerned about storage space, we recommend that you keep the default value.

Do not define too many Column families in a table

Hbase cannot process more than 2-3 CF tables. When a CF is flush, its neighboring CF is also flush triggered due to the association effect, which eventually leads to more IO.

Batch Import

Before importing data to Hbase in batches, you can create regions in advance to balance the data load. For details, see? Table Creation: Pre-Creating Regions

Avoid CMS concurrent mode failure

HBase uses cms gc. By default, GC is triggered when the memory of the old generation reaches 90%. This percentage is set by the-XX: CMSInitiatingOccupancyFraction = N parameter. Concurrent mode failed occurs in the following scenario:
When the memory of the old generation reached 90%, CMS began to collect concurrent garbage. At the same time, the new generation was still rapidly promoted to the old generation. When the old generation CMS had not completed the concurrent mark, the old generation was full, and the tragedy happened. CMS has to pause mark because there is no memory available, trigger a stop the world (suspend all jvm threads), and then clean all junk objects by using a single thread COPY method. This process will be very long. To avoid concurrent mode failed, we recommend that GC be triggered before it reaches 90%.

By setting? -XX: CMSInitiatingOccupancyFraction = N

This percentage can be calculated in this simple way. If your? Hfile. block. cache. size and? Hbase. regionserver. global. memstore. upperLimit adds up to 60% (default), so you can set 70-80, generally about 10% High.

Hbase client Optimization

AutoFlush

Set setAutoFlush of HTable to false to support batch update on the client. That is, it is sent to the server only when Put fills up the flush cache of the client.
The default value is true.

Scan Caching

How much data is cached by the slave to scan (how much data is captured from the server back to scan ).
The default value is 1, and only one entry is obtained at a time.

Scan Attribute Selection

We recommend that you specify the Column Family to reduce the traffic. Otherwise, the scan operation will return all data (all Coulmn Family) of the entire row by default ).

Close ResultScanners

After reading data through scan, remember to disable resulttasks. Otherwise, problems may occur on the RegionServer (the corresponding Server resources cannot be released ).

Optimal Loading of Row Keys

When you scan a table, you only need row key (CF, qualifier, values, timestaps are not required) to return the result. You can add a filterList to the scan instance, and set the MUST_PASS_ALL operation, add in filterList? FirstKeyOnlyFilter or KeyOnlyFilter. This reduces network traffic.

Turn off WAL on Puts

When you Put some non-important data, you can set writeToWAL (false) to further improve the write performance. WriteToWAL (false) will discard WAL log writing during Put. The risk is that when the RegionServer goes down, the data you Put may be lost and cannot be recovered.

Enable Bloom Filter

The Bloom Filter improves the read operation performance by changing the space time.

Finally, I would like to express my appreciation for the amendment to the "hbase. hregion. memstore. flush. size" and "hbase. hstore. blockingStoreFiles" incorrect ideas.

Original article: http://kenwublog.com/hbase-performance-tuning

Original article address: HBase Performance Tuning. Thank you for sharing it.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.