Re: Hbase and Database distribution

2018-01-26 Thread Ted Yu
Have you looked at http://hbase.apache.org/book.html#rsgroup ? It is in 1.4.x release. FYI On Fri, Jan 26, 2018 at 6:06 AM, Oussema BEN LAMINE wrote: > Hello, > i am using hbase 1.1.2, i have 5 region servers already working on my > cluster. > i want to create a hbase table

Hbase and Database distribution

2018-01-26 Thread Oussema BEN LAMINE
Hello, i am using hbase 1.1.2, i have 5 region servers already working on my cluster. i want to create a hbase table that will be on just two of those five region servers. in other words, i want to save new table data on just two servers, not all. any help will be appreciated, thanks

Coprocessor prePut

2018-01-26 Thread Yang Zhang
Hi I overrode coprocessor prePut() function to prevent normal put, and try to put the same data with different rowkey into the same table. The code is "context.getEnvironment().getRegion().put(newPut);" . This will caused an exception when the context's region splited. There are so