Re: [ANNOUNCE] Phoenix accepted as Apache incubator

2013-12-13 Thread rajesh babu Chintaguntla
Nice. Congratulations James. On Sat, Dec 14, 2013 at 7:28 AM, Jean-Marc Spaggiari < jean-m...@spaggiari.org> wrote: > Nice. Congratulation James. I might really have to give it a try one > day... ;) > > > 2013/12/13 Ted Yu > > > Congratulations, James. > > > > > > On Fri, Dec 13, 2013 at 3:50

Re: completebulkload does 'copy' StoreFiles instead of 'cut'

2013-09-14 Thread rajesh babu Chintaguntla
Hi BagherEsmaeily, which version of hbase you are using? Is the file system of bulkload output directory and hbase cluster are same? If you are using hbase older than 0.94.5 version, the Storefiles generated by importtsv are getting copied instead ofmoving even if the file s

Re: HMaster can not start up

2013-07-28 Thread rajesh babu Chintaguntla
The reason for the above exception is two assignments are going parallel to the same region(May be during master initialization and handling server shutdown). If you start master then it should be fine(mostly). Which version you are using? Every time you are getting this? Thanks, Rajeshbabu On

Re: Handling regionserver crashes in production cluster

2013-06-12 Thread rajesh babu chintaguntla
You can configure below to more value to close more regions at a time. hbase.regionserver.executor.closeregion.threads 3 On Wed, Jun 12, 2013 at 7:38 PM, Nicolas Liochon wrote: > What was your test exactly? You killed -9 a region server but kept the > datanode alive? > Could you d

Re: Region has been CLOSING for too long, this should eventually complete or the server will expire, send RPC again

2013-04-16 Thread rajesh babu chintaguntla
Hi Dylan, $HBASE_HOME/bin/hbase hbck -fix the above command can bring back the cluster to normal state. Just if master restarted while ROOT/META region in closing(during move or balance) then the problem you have reported will come easily. Thanks for detailed logs. Raised an issue for this. You

Re: Root Region is not online

2013-03-08 Thread rajesh babu chintaguntla
Hi Charan, Its may be because of some zookeeper issues (like session timeout) while splitting hlog. The problem could be https://issues.apache.org/jira/browse/HBASE-7034 Its recently fixed in 0.94 version as well. Thanks, Rajesh On Fri, Mar 1, 2013 at 2:03 PM, charan raj wrote: > hi, > > I a

Re: Development work focused on HFile v2

2012-11-03 Thread rajesh babu chintaguntla
Good reference for HFIle format available at http://cloudepr.blogspot.in/2009/09/hfile-block-indexed-file-format-to.html On Sun, Nov 4, 2012 at 4:26 AM, Jonathan Gray wrote: > https://issues.apache.org/jira/browse/HBASE-3857 > > There is some design doc there. > > Also, I know Mikhail Bautin has

Re: disable table

2012-09-27 Thread rajesh babu chintaguntla
Hi Mohit, We should not delete znode's manually which will cause inconsistencies like region may be shown as online on master, but it wont be on region server. That's put is failing in your case. Master restart will bring back your cluster to normal state(recovery any failures in enable/disable).