Reputation: 51146
I'm trying to improve Hbase throughput for increments. Is it possible to "buffer" several increments (for different rows) by setting autoflush to false and then call flushCommits? Or Does the autoflush setting only apply to normal Puts?
Upvotes: 1
Views: 644
Reputation: 4118
autoflush doesn't affect increments currently. I would suggest checking out these patches time to time: HBASE-2947 , HBASE-2814 (I am waiting for it aswell). Other than that you can check asych hbase client from stumbleupon.
Upvotes: 2