Re: Data missing in import bulk data

2013-07-24 Thread yonghu
The ways that you can lose data in my point of views: 1. some tuples share the same row-key+cf+column. Hence, when you load your data in HBase, they will be loaded into the same column and may exceed the predefined max version. 2. As Ted mentioned, you may import some delete, do you generate

Re: how to make tuning for hbase (every couple of days hbase region sever/s crashe)

2013-07-24 Thread ARNAB MAJI
How to reduce the Store File Index?Can you give me the conf filename and parameter I need to set I am in real need. Also tell me the way to increase hfile block size?

Re: how to make tuning for hbase (every couple of days hbase region sever/s crashe)

2013-07-24 Thread Ted Yu
See 6.3.2 under http://hbase.apache.org/book.html#rowkey.design Cheers On Wed, Jul 24, 2013 at 12:19 AM, ARNAB MAJI bobbybi...@gmail.com wrote: How to reduce the Store File Index?Can you give me the conf filename and parameter I need to set I am in real need. Also tell me the way to increase

Hbase shell showing error when giving commands

2013-07-24 Thread Narenthirasamy
Hi folks, I installed hbase for my testing purpose,when i gave commands in shell mode it shows error bunch of error code.. hbase(main):001:0 list ... ava:75) at org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:147) at

Re: Hbase shell showing error when giving commands

2013-07-24 Thread Ted Yu
Did you install HBase in distributed mode ? Which release do you use ? Are you able to see tables on master UI ? Cheers On Wed, Jul 24, 2013 at 4:08 AM, Narenthirasamy narenthiras...@yahoo.comwrote: Hi folks, I installed hbase for my testing purpose,when i gave commands in shell mode it

Re: how to make tuning for hbase (every couple of days hbase region sever/s crashe)

2013-07-24 Thread Ted Yu
See also http://hbase.apache.org/book.html#schema.cf.blocksize Cheers On Wed, Jul 24, 2013 at 6:19 AM, Ted Yu yuzhih...@gmail.com wrote: See 6.3.2 under http://hbase.apache.org/book.html#rowkey.design Cheers On Wed, Jul 24, 2013 at 12:19 AM, ARNAB MAJI bobbybi...@gmail.com wrote: How to

calling hbase method in web service using Axis

2013-07-24 Thread naveen.ara
I am using hbase to query some data in java, I also have hadoop jars in my class path. I am able to query hbase data from main method in java class, but calling same method from web service using Axis gives this error : java.lang.NoClassDefFoundError:

Re: calling hbase method in web service using Axis

2013-07-24 Thread Ted Yu
Looks like hbase-0.94.6-cdh4.3.0-security.jar was not in classpath. On Wed, Jul 24, 2013 at 12:06 PM, naveen.ara naveen@gmail.com wrote: I am using hbase to query some data in java, I also have hadoop jars in my class path. I am able to query hbase data from main method in java class, but

unsubscribe Re: calling hbase method in web service using Axis

2013-07-24 Thread Andrew Holway
On 24 July 2013 20:06, naveen.ara naveen@gmail.com wrote: I am using hbase to query some data in java, I also have hadoop jars in my class path. I am able to query hbase data from main method in java class, but calling same method from web service using Axis gives this error :

[ANNOUNCE] HBase 0.94.10 is available for download

2013-07-24 Thread lars hofhansl
The HBase Team is pleased to announce the immediate release of HBase 0.94.10. Download it from your favorite Apache mirror [1]. This release has also been pushed to Apache's maven repository. As usual, all previous 0.92.x and 0.94.x releases can upgraded to 0.94.10 via a rolling upgrade without

Re: unsubscribe Re: calling hbase method in web service using Axis

2013-07-24 Thread Ted Yu
Please email to user-unsubscr...@hbase.apache.org On Wed, Jul 24, 2013 at 12:56 PM, Andrew Holway andrew.hol...@gmail.comwrote: On 24 July 2013 20:06, naveen.ara naveen@gmail.com wrote: I am using hbase to query some data in java, I also have hadoop jars in my class path. I am able to

Re: calling hbase method in web service using Axis

2013-07-24 Thread naveen.ara
It is in class path,I also checked by unzipping the hbase-0.94.6-cdh4.3.0-security.jar java class WritableByteArrayComparable is present in jar. Because I have hadoop jars also I guess some jar is conflicting with hbase jar. -- View this message in context:

Some regions keep using an older version of coprocessor.

2013-07-24 Thread Kim Chew
Hello there, I have an Endpoint CP which I deployed by changing the table schema using the 'alter' command in hbase shell. I stored my CP in hdfs. My table has 4 regions, say, region-1 region-2 region-3 region-4 Before I deployed a new CP, I use this command to remove the old CP (Do I have to

Re: Some regions keep using an older version of coprocessor.

2013-07-24 Thread Kim Chew
Sorry, I forgot to add that each region is located in a different RS. On Wed, Jul 24, 2013 at 4:57 PM, Kim Chew kchew...@gmail.com wrote: Hello there, I have an Endpoint CP which I deployed by changing the table schema using the 'alter' command in hbase shell. I stored my CP in hdfs. My

Re: Hbase shell showing error when giving commands

2013-07-24 Thread Pavan Sudheendra
Just make sure JAVA_HOME is set in the current shell. Also, check jps after you start HBase. It should indicate a process HMaster as running. Regards, Pavan On Jul 24, 2013 8:41 PM, Ted Yu yuzhih...@gmail.com wrote: Did you install HBase in distributed mode ? Which release do you use ? Are

Re: issure about name node HA configuration

2013-07-24 Thread Ted Yu
Please take a look at http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/HDFSHighAvailabilityWithQJM.html To my understanding, nn1 and nn2 are IDs of the NameNodes - they don't have to be the same as namenode hostnames. Cheers On Wed, Jul 24, 2013 at 7:09 PM, ch huang

Connection reset by peer. Count of bytes read: 0

2013-07-24 Thread Henry Hung
Hi All, I'm a HBase newbie. Today I start to do stress test using 4 java process to load large amount of rows (1 minute = 18,000 rows). After a while, one of my region server log got this kind of WARN message: WARN org.apache.hadoop.ipc.HBaseServer: IPC Server listener on 60020:

Re: calling hbase method in web service using Axis

2013-07-24 Thread Stack
It would be difficult for the exception to be any more explicit. Axis must be messing w/ your classpath/class loading. Do any hbase classes load? Is this the first? Perhaps it is the classes WBAC imports? St.Ack On Wed, Jul 24, 2013 at 1:14 PM, naveen.ara naveen@gmail.com wrote: It is