Typecast the return value of the table pool to HTable and you shoud be
fine. E.g. I'm doing this:

...
HTable table = (HTable) tablePool.getTable(this.hbaseTable);
table.setAutoFlush(this.hbaseAPIuseAutoFlush);
table.setWriteBufferSize(this.hbaseAPIwriteBufferSize);
...


lg,
Thomas

-----Original Message-----
From: [email protected] [mailto:[email protected]] 
Sent: Freitag, 12. August 2011 08:01
To: [email protected]
Subject: autoFlush

I want to do client-side write-caching to hbase.  I see the setAutoFlush
method in HTable.  I do not see that in the HTableInterface that is
returned from HTablePool.  Is there something equivalent to setAutoFlush
on table instances from HTablePool?

Thanks!

Reply via email to