Larsenal
Larsenal

Reputation: 51146

Does an HTable increment consider the auto-flush setting?

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

Answers (1)

frail
frail

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

Related Questions