Re: How to parse data stored in child node of ZK /hbase/region-in-transition

2018-05-20 Thread Nand kishor Bansal
Hi, Using the above clue I researched further to found out that I need to first use org.apache.hadoop.hbase.zookeeper.RecoverableZooKeeper.removeMetaData(byte[] data) to remove the metadata and then org.apache.hadoop.hbase. RegionTransition.parseFrom(byte[] data) Regards, Nand On Fri,

Re: How to parse data stored in child node of ZK /hbase/region-in-transition

2018-05-18 Thread Balazs Meszaros
Hi, HBase parses the binary data in region-in-transition ZooKeeper node with org.apache.hadoop.hbase.RegionTransition.parseFrom(byte[] data). It is in the hbase-client jar. These APIs are private, so use them carefully. Best regards, Balazs On Fri, May 18, 2018 at 5:49 AM Debraj Manna

Re: How to parse data stored in child node of ZK /hbase/region-in-transition

2018-05-17 Thread Debraj Manna
Hi We posted the same in stacker flow. https://stackoverflow.com/q/50378236/785523 We didn't get any reply there also. Anyone any thoughts? On Wed 16 May, 2018, 6:54 PM Nand kishor Bansal, wrote: > Hi Users, > > I'm trying to find out if any region is going through split

How to parse data stored in child node of ZK /hbase/region-in-transition

2018-05-16 Thread Nand kishor Bansal
Hi Users, I'm trying to find out if any region is going through split by looking at data in zookeeper. I triggered a region split manually and captured the data from child ZK node /hbase/region-in-transition which corresponded to the region.