NoSQL: HBase Benchmarking for Multi-Threaded Environment

| | bookmark | email

HBase Benchmarking for Multi-Threaded Environment

This weekend I attempted to figure out how HBase writes perform in multi-threaded environments.  […] I used three variants to write records into HBase: Use one HTable for every write HTable is created using a singleton instance of HBaseConfiguration HTable is created using new instance of HBaseConfiguration (Why? - I wanted to check how the behavior changes if connections to servers are not shared.  Reference: HTable and HConnectionManager documentation) Use HTablePool

tags:HBase

via NoSQL databases