It is possible to indicate a specific key range into a specific node?

2014-11-02 Thread yonghu
Dear All, Suppose that I have a key range from 1 to 100 and want to store 1-50 in the first node and 51-100 in the second node. How can I do this in Hbase? regards! Yong

Re: It is possible to indicate a specific key range into a specific node?

2014-11-02 Thread Dima Spivak
Hi Yong, Check out http://hbase.apache.org/book/perf.writing.html to learn about pre-splitting regions at table creation time. Beyond this, HBase internally handles which RegionServers serve any particular region. All the best, Dima On Sun, Nov 2, 2014 at 11:32 AM, yonghu

Re: It is possible to indicate a specific key range into a specific node?

2014-11-02 Thread Dima Spivak
Oops, accidentally cut out my last sentence: If you do want to move a region manually, the simplest way to do this is by invoking move in the HBase shell. -Dima On Sun, Nov 2, 2014 at 11:51 AM, Dima Spivak dspi...@cloudera.com wrote: Hi Yong, Check out