But how can the client understand which k-v belongs to an individual RS? Does it need to scan the .META. table? (if so, it's an expensive op). On the RegionServer side, is it like processing multiple requests in a batch per RPC?
Can you guide us to dive it a bit more? Thanks, Sean On Mon, Jan 10, 2011 at 9:38 AM, Jean-Daniel Cryans <[email protected]>wrote: > HBaseHUT is used to solve he Get+Put problem, so if it's your problem > as well then do look into it. > > To answer your first question, that method will group Puts by region > server meaning that it will do anywhere between 1-n where n is the > number of RS, and that's done in parallel. > > J-D > > On Mon, Jan 10, 2011 at 9:06 AM, Weishung Chung <[email protected]> > wrote: > > What is the difference between the above put method with the following > > capability of the HBaseHUT package ? > > https://github.com/sematext/HBaseHUT > > > > On Mon, Jan 10, 2011 at 10:58 AM, Weishung Chung <[email protected]> > wrote: > > > >> Does HTable.put(List<Put> puts) method perform a batch insert with a > single > >> RPC call? I am going to insert a lot of values into a column family and > >> would like to increase the write speed. > >> Thank you. > >> > > > -- --Sean
