Hbase in embedded mode

2013-09-19 Thread samar.opensource
Hi Guys, Can we use HBase in a embedded more. So whole HBase should start in the same JVM and there should no RPC calls. Something like our embedded java dbs. Do we have some like this or something close to this. Regards, Samar

Re: Region size per region on the table page

2013-08-01 Thread samar.opensource
ring us one step closer. On Thu, Aug 1, 2013 at 2:42 PM, samar.opensource < samar.opensou...@gmail.com wrote: Hi Jean, You are right , hannibal does that, but it a seperate process we need to install/maintail. I thought if we had a quick and easy way to see it from master-status page. Th

Re: Region size per region on the table page

2013-08-01 Thread samar.opensource
have it on the table page too(IMO) to understand the data size distribution of regions of a particular table. Samar On 01/08/13 5:51 PM, Jean-Marc Spaggiari wrote: Hi Samar Hannibal is already doing what you are looking for. Cheers, JMS 2013/8/1 samar.opensource Hi Devs/Users, Most of

Region size per region on the table page

2013-08-01 Thread samar.opensource
Hi Devs/Users, Most of the time we want to know if our table split logic is accurate of if our current regions are well balanced for a table. I was wondering if we can expose the size of region on the table.jsp too on the "table region" table. If people thing it is useful I can pick it up.

Re: NoSuchMethodException: org.apache.hadoop.hbase.regionserver.HRegionServer.getCompactionState([B)

2013-06-06 Thread samar.opensource
Hi Guys, Found the issue. We were running some RSs on older version of hbase. Thanks, Samar On 06/06/13 2:07 PM, samar.opensource wrote: HI Users, We are getting NoSuchMethodException: org.apache.hadoop.hbase.regionserver.HRegionServer.getCompactionState([B) while accessing the table.jsp

NoSuchMethodException: org.apache.hadoop.hbase.regionserver.HRegionServer.getCompactionState([B)

2013-06-06 Thread samar.opensource
HI Users, We are getting NoSuchMethodException: org.apache.hadoop.hbase.regionserver.HRegionServer.getCompactionState([B) while accessing the table.jsp via master-status page. This is error is thrown on the table.jsp and hence the region information is also not rendered. Looking at the JSP c

Re: Get all rows that DON'T have certain qualifiers

2013-05-14 Thread samar.opensource
Hi, I will try to write a sample code and execute it , but what i gather from the blog and the java apidoc is that u just need to do opposite of what u r doing . so use CompareOp.|*EQUAL *| an

Re: Compaction time

2013-03-04 Thread samar.opensource
compacted correctly? You can even maybe keep the automatic compaction to on if you do that since when you heavy job will run, your data compaction will be almost totally done. JM 2013/3/4 samar.opensource : Hi Viral, The jobs dont run often. may be few times a day(10 ). But the problem is there are

Re: Compaction time

2013-03-03 Thread samar.opensource
the recommended approach, AFAIK). Or you could set the compaction to trigger at a set time of the day when you know your jobs are not running. -Viral On Sun, Mar 3, 2013 at 10:44 PM, samar.opensource < samar.opensou...@gmail.com> wrote: Hi, We are running some high load jobs whi

Compaction time

2013-03-03 Thread samar.opensource
Hi, We are running some high load jobs which are mostly writes. During these jobs, compaction is triggered which takes sometime as longs as 40mins to complete. This causes blocking (as others wait for compaction in the queue). Please suggest how much compaction time is reasonable for compac