Re: Region server not accept connections intermittently

2014-07-10 Thread Rural Hunter
I got the dump of the problematic rs from web ui: http://pastebin.com/4hfhkDUw output of top -H -p PID: http://pastebin.com/LtzkScYY I also got the output of jstack but I believe it's already in the dump so I do not paste it again. This time the hang lasted about 20 minutes. 于 2014/7/9 12:48,

Re: Region server not accept connections intermittently

2014-07-10 Thread Ted Yu
I noticed the blockSeek() call in HFileReaderV2. Did you take only one dump during the 20 minute hang ? Cheers On Jul 10, 2014, at 1:54 AM, Rural Hunter ruralhun...@gmail.com wrote: I got the dump of the problematic rs from web ui: http://pastebin.com/4hfhkDUw output of top -H -p PID:

Re: error during Hbase running

2014-07-10 Thread Bharath Vissapragada
Hey, +user@hbase Make sure you are placing 2.4 version hadoop jars in hbase/lib folder so that HBase picks correct jars during runtime. This needs to be done across all the nodes in the cluster. - Bharath On Thu, Jul 10, 2014 at 1:57 PM, Prashasti Agrawal prashasti.iit...@gmail.com wrote:

Re: error during Hbase running

2014-07-10 Thread Ted Yu
Prashasti: In you mvn command I noticed that assembly:single was missing. Is this a typo ? Btw there is no hadoop-core jar for Hadoop 2.4.0 Cheers On Jul 10, 2014, at 2:16 AM, Bharath Vissapragada bhara...@cloudera.com wrote: Hey, +user@hbase Make sure you are placing 2.4 version

Re: Region server not accept connections intermittently

2014-07-10 Thread Rural Hunter
Yes, I can take more if needed when it happens next time. 于 2014/7/10 17:11, Ted Yu 写道: I noticed the blockSeek() call in HFileReaderV2. Did you take only one dump during the 20 minute hang ? Cheers

how to measure IO on HBase

2014-07-10 Thread sahanashankar
Hello, I have a HBase cluster of 1 Master node and 5 Region Servers deployed on HDFS. What is the best way to measure IO for the operations on cluster such as 1. Scan 2. Get 3. Put I need to conduct the measurement in 2 scenarios. In the first scenario, a have a simple table (size 1GB),

Re: how to measure IO on HBase

2014-07-10 Thread Ted Yu
Please see chapter 17 of refguide. Especially http://hbase.apache.org/book.html#ops.monitoring Cheers On Jul 10, 2014, at 2:51 AM, sahanashankar sahanashanka...@gmail.com wrote: Hello, I have a HBase cluster of 1 Master node and 5 Region Servers deployed on HDFS. What is the best way

Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
Hi Team, Could you please help me to resolve below issue. In my hbase table, i've a 30 records. I need to retrieve records based on list of rowkeys. I'm using below code base. It is not giving records HTable table = new HTable(configuration, tableName); ListFilter filters = new

Re: Need help on RowFilter

2014-07-10 Thread Ian Brooks
HI Rajesh, If you know the rowkeys already, you don't need to perform a scan, you can just perform a get on the list of rowkeys e.g. ListGet RowKeyList = new ArrayListGet(); # for each rowkey RowKeyList.add(new Get(Bytes.toBytes(rowkey))); Result[] results = table.get(RowKeyList); for

Re: Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
Hi Ian, Thank you very much of the solution. Could you please explain at what are the use cases we need to use RowFilter? Regards, Rajesh On Thu, Jul 10, 2014 at 4:48 PM, Ian Brooks i.bro...@sensewhere.com wrote: HI Rajesh, If you know the rowkeys already, you don't need to perform a scan,

Re: Need help on RowFilter

2014-07-10 Thread Ian Brooks
Hi Rajesh From personal use, the rowFilter allows for finer grained results when performing a large scan where the row keys don't exaclty match your criteria. For example if you use start and end rows to constrain your scan, the results may contain some results that you don't want and you can

Re: Need help on RowFilter

2014-07-10 Thread Madabhattula Rajesh Kumar
Hi Ian, Thank you very much Regards, Rajesh On Thu, Jul 10, 2014 at 5:16 PM, Ian Brooks i.bro...@sensewhere.com wrote: Hi Rajesh From personal use, the rowFilter allows for finer grained results when performing a large scan where the row keys don't exaclty match your criteria. For

Re: Need help on RowFilter

2014-07-10 Thread Mingtao Zhang
Hi Rajesh, It looks like the filter list combines filters with 'AND' operator. In your case you had two 'equal' rowfilters and expected each return a result. Mingtao Sent from iPhone On Jul 10, 2014, at 7:08 AM, Madabhattula Rajesh Kumar mrajaf...@gmail.com wrote: Rajesh

Re: reply: Why PageFilter returning less rows than it should be?

2014-07-10 Thread Ted Yu
somefilter is added to flo and fla. Are they the same instance of some filter class ? Cheers On Wed, Jul 9, 2014 at 10:29 PM, Michael Calvin 77231...@qq.com wrote: I'm sorry that was an unfinished mail. The proper one comes next. But I believe it contains the essential: FilterLists inside a

incremental cluster backup using snapshots

2014-07-10 Thread oc tsdb
Hi, Does new hbase version(0.99) supports incremental backup using snapshots? If not supported in current releases, is it planned to add in future releases? can we export snapshots to local file system directly? Thanks oc.tsdb