unsubscribe me please from this mailing list

2015-12-03 Thread Garg, Rinku
unsubscribe me please from this mailing list Thanks & Regards Rinku Garg _ The information contained in this message is proprietary and/or confidential. If you are not the intended recipient, please: (i) delete the message and all copies; (ii) do not disclose, distribute or use the

Re: Slow response on HBase REST api using globbing option

2015-12-03 Thread Ted Yu
Thanks for the response, Jerry. I created a patch: http://pastebin.com/xisGVHt8 All REST tests passed. I know Ben logged a JIRA on this subject already. Not sure if that should be re-opened or, a new JIRA should be created. Once we have an open JIRA, I will attach my patch there. Cheers On

Re: Slow response on HBase REST api using globbing option

2015-12-03 Thread Jerry He
>From HBase 0.98, there have been changes going into the Rest gateway, mainly more scan support. There seems to be a change in the way the url table/rowkey* is executed on the Rest gateway. in pre-0.96, we set the startKey = rowkey and endKey = rowkey + one byte of 255 on Rest gateway in the

Re: How to list the regions in an HBase table through the shell?

2015-12-03 Thread Ted Yu
There is get_splits command but it only shows the splits. status 'detailed' would show you enough information e.g. "t1,30,1449175546660.da5f3853f6e59d1ada0a8554f12885ab." numberOfStores=1, numberOfStorefiles=0, storefileUncompressedSizeMB=0, lastMajorCompactionTimestamp=0,

RE: Slow response on HBase REST api using globbing option

2015-12-03 Thread Sutton, Ben
We are currently experiencing an issue with HBase 1.1.1 through the REST API whereby we are getting a very slow (> 2minutes) /non-existent response when hitting the Rest API with a globbing option i.e. http://:http://%3cHBase_Rest%3e:%3cHBase_Rest_Port/table/key*> We are able to return each

How to list the regions in an HBase table through the shell?

2015-12-03 Thread Kevin Pauli
I would like to get the same information about the regions of a table that appear in the web UI (i.e. region name, region server, start/end key, locality), but through the hbase shell. (The UI is flaky/slow, and furthermore I want to process this information as part of a script.) After much

Re: Issues with HBase Regions in Transition

2015-12-03 Thread Amanda Moran
Hi there Ted- Just a quick updated. SUCCESS! Actually just swapping out the files didn't work, BUT thanks to this email my co-worker (Narendra) mentioned we would might need to remove some of our custom settings as well. I changed the setting back to default... and SUCCESS the upgrade was

Re: How to list the regions in an HBase table through the shell?

2015-12-03 Thread Heng Chen
@tedyu, should we add something like 'list server table' to list all regions in one table on some RS. I found in my practice, it is always needed. 2015-12-04 4:48 GMT+08:00 Ted Yu : > There is get_splits command but it only shows the splits. > > status 'detailed' would

Re: How to list the regions in an HBase table through the shell?

2015-12-03 Thread Ted Yu
Romil logged HBASE-14925 around the time I replied to Kevin. Mind continuing discussion on HBASE-14925 ? Cheers On Thu, Dec 3, 2015 at 6:13 PM, Heng Chen wrote: > @tedyu, should we add something like 'list server table' to list all > regions in one table on some RS.