On Mon, Aug 13, 2012 at 6:10 AM, Gurjeet Singh <[email protected]> wrote: > Thanks Lars! > > One final question : is it advisable to issue multiple threads > against a single HTable instance, like so: > > HTable table = ... > for (i = 0; i < 10; i++) { > new ScanThread(table, startRow, endRow, rowProcessor).start(); > } >
Make an HTable per thread. See the class comment: http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/HTable.html St.Ack
