Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any performance benchmark for Thrift on HBase?

I have a system that may writing huge data to hbase. The system is written by c++ and found out that hbase have thrift interface for other languages.

My question is,

  1. Is there any performance benchmark for Thrift on HBase?
  2. What is the most disadvantage compaire with java native api?
like image 490
kerwin Avatar asked Jun 14 '12 02:06

kerwin


1 Answers

I recommend these recent two blog posts on this topic:

  1. HBase + Thrift performance part 1
  2. HBase + Thrift performance part 2

The two posts give detailed performance measurements of using Thrift with HBase.

like image 154
Suman Avatar answered Nov 15 '22 12:11

Suman