what is region server startcode

2011-12-05 Thread Vamshi Krishna
Hi i want to move some regions of table from one server to other, but in the move method argumemnts, what is the meaning of regionserver startcode? from where i can get it? please can anybody tell..? -- *Regards* * Vamshi Krishna *

Re: Implementation of Filters using Thrift and Ruby

2011-12-05 Thread yuzhihong
Hopefully we can release 0.92 this month. I am not aware of patch that back ports filter language to 0.90 branch. Cheers On Dec 5, 2011, at 8:58 PM, Stuti Awasthi wrote: > Hi Doug, > > Thanks for update. By when we can expect release of Hbase 0.92. > Let me know if there are any patches

RE: Combining Multiple queries in Hbase

2011-12-05 Thread Stuti Awasthi
Hi All, Any suggesstions on this ?? -Original Message- From: Stuti Awasthi Sent: Monday, December 05, 2011 4:55 PM To: hbase-u...@hadoop.apache.org Subject: Combining Multiple queries in Hbase Hi all, I have some query related to combining multiple queries in Hbase. I want my data to be

RE: Implementation of Filters using Thrift and Ruby

2011-12-05 Thread Stuti Awasthi
Hi Doug, Thanks for update. By when we can expect release of Hbase 0.92. Let me know if there are any patches available which I can apply in Hbase 0.90.3 to attain Filters via thrift. Thanks -Original Message- From: Doug Meil [mailto:doug.m...@explorysmedical.com] Sent: Monday, Decemb

EOFException in HBase 0.94

2011-12-05 Thread jcfolsom
Hi I am trying to get HBase running in pseudo-distributed mode. It appears to work when I use standalone mode but in pseudo distributed mode I get: java.io.IOException: Call to localhost/127.0.0.1:9000 failed on local exception: java.io.EOFException at org.apache.hadoop.ipc.Client.wrapExce

want to try HBase on a large cluster running Lustre - any advice?

2011-12-05 Thread Taylor, Ronald C
Hello Lars, Thanks for your previous help. Got a new question for you. I now have the opportunity to try using Hadoop and HBase on a newly installed cluster here, at a nominal cost. A lot of compute power (480+ nodes, 16 cores per node going up to 32 by the end of FY12, 64 GB RAM per node, wit

Re: Stuck on call to locateRootRegion

2011-12-05 Thread Joel Halbert
Shame on me. In my haste and excitement to upgrade to the latest version of hbase I forgot to update the client jar. On 05/12/11 21:48, Joel Halbert wrote: Apologies for spamming thread, just noticed that on old install of HBase I had 2 local processes: org.apache.hadoop.hbase.master.HMaster

RE: FeedbackRe: Suspected memory leak

2011-12-05 Thread Sandy Pratt
Gaojinchao, I'm not certain, but this looks a lot like some of the issues I've been dealing with lately (namely, non-Java-heap memory leakage). First, -XX:MaxDirectMemorySize doesn't seem to be a solution. This flag is poorly documented, and moreover the problem appears to be related to relea

Re: Stuck on call to locateRootRegion

2011-12-05 Thread Joel Halbert
Apologies for spamming thread, just noticed that on old install of HBase I had 2 local processes: org.apache.hadoop.hbase.master.HMaster org.apache.hadoop.hbase.zookeeper.HQuorumPeer But now with hbase 0.90.4 I only have one: org.apache.hadoop.hbase.master.HMaster Have something change or (mo

Re: Stuck on call to locateRootRegion

2011-12-05 Thread Joel Halbert
A little more info, I see this in the hbase master logs: 011-12-05 21:35:28,203 INFO org.apache.zookeeper.server.NIOServerCnxn: Accepted socket connection from /127.0.0.1:50621 2011-12-05 21:35:28,209 INFO org.apache.zookeeper.server.NIOServerCnxn: Client attempting to establish new session at

Re: HBase Bulk Import Exception

2011-12-05 Thread Harsh J
Hey Shawn, Run it as: HADOOP_CLASSPATH=`hbase classpath` hadoop jar (…) The guava supplied class is required on the frontend code as well, which is what it fails to find and hence crashes out with a no-class-def. Doing the above should solve it for you. On 03-Dec-2011, at 5:58 AM, Shawn O'Rou

HBase Bulk Import Exception

2011-12-05 Thread Shawn O'Rourke
Hello, I am trying to do a bulk import of some data into a table (named TRANS) with the following syntax: hadoop jar /usr/lib/hbase/hbase-0.90.1-CDH3B4.jar importtsv -libjars /usr/lib/hbase/lib/guava-r06.jar '-Dimporttsv.separator=,' -Dimporttsv.columns=CF1:TBC2,CF1:TBC1,HBASE_ROW_KEY TRANS /

Regions failed to migrate

2011-12-05 Thread sagar naik
Scenario: - regionserver machine was rebooted . AWS random reboot . Regionserver logs show shutdown - Datanode which is on same machine also recvd a kill command - Master did not migrate the regions. It did detect the node down - I checked after 6 hours , the hbase was in inconsistent

Re: hbase master is not starting @ 60010 on new ubutnu 11.04 system

2011-12-05 Thread Stack
On Mon, Dec 5, 2011 at 9:22 AM, Harsh J wrote: > Wow, that is almost a guide for the rest of us > > Going through your steps, ... Wow. Nice response Harsh. Its almost a guide for the rest of us (smile). St.Ack

Re: Unexpected Data insertion time and Data size explosion

2011-12-05 Thread Doug Meil
Hi there- Have you looked at this? http://hbase.apache.org/book.html#keyvalue On 12/5/11 11:33 AM, "kranthi reddy" wrote: >Ok. But can some1 explain why the data size is exploding the way I have >mentioned earlier. > >I have tried to insert sample data of arnd 12GB. The data occupied by >

Re: Unexpected Data insertion time and Data size explosion

2011-12-05 Thread kranthi reddy
1) Does having dfs.replication factor "3" in general result in table data size of 3x + y (where x is the size of the file in local file system and y is some additional space for meta information storage) ??? 2) Does Hbase, pre allocate space for all the cell versions when the cell is created for t

Re: hbase master is not starting @ 60010 on new ubutnu 11.04 system

2011-12-05 Thread Harsh J
Wow, that is almost a guide for the rest of us. You missed only the logs. Going through your steps, these are all I note: 1. Why use CDH3u1 when u2 is the latest? 2. You do not need 3 ZKs on a single machine. One is sufficient - you've only ended up complicating the setup there :) 3. The prop "hb

Re: First postPut coprocessor test drive

2011-12-05 Thread Mingjie Lai
Thomas. Just saw your email. In addition to Lars's response, a couple of things I'd like to point out: >>if >> (Arrays.equals(e.getRegion().getTableDesc().getName(), >> Bytes.toBytes("t"))) { This piece of code can be eliminated if you only apply the coprocessor to one table,

hbase master is not starting @ 60010 on new ubutnu 11.04 system

2011-12-05 Thread Rahul Mehta
I am trying to install hbase on my local system ubutnu 11.04 . what i have done to do that is : 1. SSH Configuration 1. sh-keygen -t rsa 2. do the enter enter when it ask something. 3. cd ~/.ssh 4. sudo apt-get install openssh-server 5. ssh localhost 2. Install

Re: Unexpected Data insertion time and Data size explosion

2011-12-05 Thread kranthi reddy
Ok. But can some1 explain why the data size is exploding the way I have mentioned earlier. I have tried to insert sample data of arnd 12GB. The data occupied by Hbase table is arnd 130GB. All my columns i.e. including the ROWID are strings. I have even tried converting by ROWID to long, but that s

Re: Unexpected Data insertion time and Data size explosion

2011-12-05 Thread Ulrich Staudinger
the point, I refer to is not so much about when hbase's server side flushes, but when the client side flushes. If you put every value immediately, it will result every time in an RPC call. If you collect the data on the client side and flush (on the client side) manually, it will result in one RPC

Re: Implementation of Filters using Thrift and Ruby

2011-12-05 Thread Doug Meil
I believe that these filters... http://hbase.apache.org/book.html#thrift.filter-language ... were added to .92. This should be marked as such in the book. I'll update it. On 12/4/11 11:48 PM, "Stuti Awasthi" wrote: >Hi, >I tried using Filters with Java Api and it works well. Now I want to

Combining Multiple queries in Hbase

2011-12-05 Thread Stuti Awasthi
Hi all, I have some query related to combining multiple queries in Hbase. I want my data to be stored in decreasing order i.e latest entry should appear first in Hbase: Schema : Row Key CF Timestamp-userid- Info Now I have to get data from 3 queri

Failed to connect to remote VM when I remote debug HBase by using eclipse

2011-12-05 Thread jiajun chen
I do it according http://www.spnguru.com/2011/03/remote-debug-hbase-by-using-eclipse/ ,but failed : Failed to connect to remote VM. Connection refused. Connection refused: connect Any body any hints ?

Re: Unexpected Data insertion time and Data size explosion

2011-12-05 Thread kranthi reddy
Doesn't the configuration setting "hbase.hregion.memstore.flush.size" do the bulk insert ??? I was of the opinion that Hbase would flush all the puts to the disk when it's memstore is filled, whose property is defined in hbase-default.xml. Is my understanding wrong here ??? On Mon, Dec 5, 2011 a