Re: Need help in writing data to hbase using Ozzie job

2017-06-05 Thread Ted Yu
bq. java.lang.NoClassDefFoundError: com/yammer/metrics/core/Gauge Looks like yammer jar was not on the classpath. Please check. On Sun, Jun 4, 2017 at 11:43 PM, Jeetendra Gangele wrote: > Hi All, > I have a job with bring the data from MYSQL to Hbase using Sqoop. This job > is running fine whe

getting start and stop key

2017-06-05 Thread Rajeshkumar J
Hi, I am running mapreduce over hbase table using java and I want to know which is the startkey and stopkey for every region. As every mapper takes a region as input I need to know the startkey and stopkey of a region in the map function. Is there any function to get that or is there any way to ac

ZookeeperConnectionException in HBase Standalone mode

2017-06-05 Thread Soujanyanaganuri
I'm using hbase-0.90.0. I'm running it in standalone mode. While trying to execute any commands from "hbase shell" it is giving me the following error. hbase(main):003:0> status 'detailed' ERROR: org.apache.hadoop.hbase.ZooKeeperConnectionException: org.apache.hadoop.hbase.ZooKeeperConnectionExce

Re: ZookeeperConnectionException in HBase Standalone mode

2017-06-05 Thread Ted Yu
You should find some clue from master log. BTW 0.90 was very old. Please consider upgrading. On Mon, Jun 5, 2017 at 3:48 AM, Soujanyanaganuri < soujanyanaganur...@gmail.com> wrote: > I'm using hbase-0.90.0. I'm running it in standalone mode. While trying to > execute any commands from "hbase she

Re: getting start and stop key

2017-06-05 Thread Ankit Singhal
Hi RajeshKumar, you can try this.(InputSplit class may vary depending upon the InputFormat you are using, below example is for TableInputFormat) TableSplit tableSplit = (TableSplit)context.getInputSplit(); byte[] startRow=tableSplit.getStartRow() byte[] endRow=tableSplit.getEndRow() Regards, Ank

Any Repercussions of using Multiwal

2017-06-05 Thread Sachin Jain
Hi, I was in the middle of a situation where I was getting *RegionTooBusyException* with log something like: *Above Memstore limit, regionName = X ... memstore size = Y and blockingMemstoreSize = Z* This potentially hinted me towards *hotspotting* of a particular region. So I fixed my keyspa