HBase 0.96 dependecy

2014-05-22 Thread Talat Uyarer
Hi all, I try to use Hbase 0.96 version with hadoop 2.4.0. But I found it's jar in maven central repo. Where can I find jar of hbase 0.96 in maven repo ? Thanks -- Talat UYARER Websitesi: http://talat.uyarer.com Twitter: http://twitter.com/talatuyarer Linkedin: http://tr.linkedin.com/pub/talat-

Re: HBase 0.96 dependecy

2014-05-22 Thread Renato Marroquín Mogrovejo
Maybe this is what you are looking for Talat? http://mvnrepository.com/artifact/org.apache.hbase/hbase/0.96.0-hadoop2 On May 22, 2014 9:38 AM, "Talat Uyarer" wrote: > Hi all, > > I try to use Hbase 0.96 version with hadoop 2.4.0. But I found it's > jar in maven central repo. Where can I find ja

Re: HBase 0.96 dependecy

2014-05-22 Thread Talat Uyarer
When I add this pom code, maven didn't get hbase's jar. You can see on http://search.maven.org/#artifactdetails%7Corg.apache.hbase%7Chbase%7C0.96.2-hadoop2%7Cpom it has just ony pom files. But it hasn't any jars. 2014-05-22 10:47 GMT+03:00 Renato Marroquín Mogrovejo : > Maybe this is what you ar

Re: HBase 0.96 dependecy

2014-05-22 Thread Dima Spivak
Dear Talat, Have you tried to go up one level in the Central Repository? They still have jars for each module (e.g. hbase-client if you're trying to use the API): http://search.maven.org/#browse%7C359444332 All the best, Dima On Thu, May 22, 2014 at 12:55 AM, Talat Uyarer wrote: > When I a

Re: HBase 0.96 dependecy

2014-05-22 Thread Renato Marroquín Mogrovejo
Thanks Dima! Renato M. 2014-05-22 11:24 GMT+02:00 Dima Spivak : > Dear Talat, > > Have you tried to go up one level in the Central Repository? They still > have jars for each module (e.g. hbase-client if you're trying to use the > API): http://search.maven.org/#browse%7C359444332 > > All the b

Re: HBase Git checkout

2014-05-22 Thread Kashif Jawed Siddiqui
Hi, I am not able to checkout the code from github (using TortoiseGit in Windows). Any clue why ? Any access permissions required ? git.exe clone --recursive--progress -v "https://git-wip-us.apache.org/repos/asf/hbase.git"; "D:\HADOOP\hbase\GIT\apache.svn.latest.trunk\hba

[ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread James Taylor
I'm pleased to announce that Apache Phoenix has graduated from the incubator to become a top level project. Thanks so much for all your help and support - we couldn't have done it without the fantastic HBase community! We're looking forward to continued collaboration. Regards, The Apache Phoenix te

Re: [ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread Ted Yu
Congratulations. On Thu, May 22, 2014 at 2:46 PM, James Taylor wrote: > I'm pleased to announce that Apache Phoenix has graduated from the > incubator to become a top level project. Thanks so much for all your help > and support - we couldn't have done it without the fantastic HBase > community!

Re: [ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread Jean-Marc Spaggiari
Oh, nice!!! Congratulations to all the Phoenix team!!! JM Le 2014-05-22 17:46, "James Taylor" a écrit : > I'm pleased to announce that Apache Phoenix has graduated from the > incubator to become a top level project. Thanks so much for all your help > and support - we couldn't have done it witho

Re: how to calculate key length in hbase?

2014-05-22 Thread ch huang
it just say the value is get from FileInfo struct ,i do not see any algorithm of caculate AVG_KEY_LEN. On Thu, May 22, 2014 at 10:08 AM, Ted Yu wrote: > Please take a look at HFileReaderV2 ctor (line 159 in trunk): > > avgKeyLen = Bytes.toInt(fileInfo.get(FileInfo.AVG_KEY_LEN)); > > Cheers >

Re: [ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread Shengjun Xin
Great, congratulations On Fri, May 23, 2014 at 5:47 AM, Jean-Marc Spaggiari < jean-m...@spaggiari.org> wrote: > Oh, nice!!! > > Congratulations to all the Phoenix team!!! > > JM > Le 2014-05-22 17:46, "James Taylor" a écrit : > > > I'm pleased to announce that Apache Phoenix has graduated from

Re: how to calculate key length in hbase?

2014-05-22 Thread Ted Yu
See the following in AbstractHFileWriter: int avgKeyLen = entryCount == 0 ? 0 : (int) (totalKeyLength / entryCount); fileInfo.append(FileInfo.AVG_KEY_LEN, Bytes.toBytes(avgKeyLen), false); On Thu, May 22, 2014 at 5:43 PM, ch huang wrote: > it just say the value is get from Fi

Re: HBase cluster design

2014-05-22 Thread Dhaval Shah
Can you share your hbase-env.sh and hbase-site.xml? And hardware specs of your cluster?   Regards, Dhaval From: Flavio Pompermaier To: user@hbase.apache.org Sent: Saturday, 17 May 2014 2:49 AM Subject: Re: HBase cluster design Could you tell me please in

Re: CDH5 hbase client outofmemory

2014-05-22 Thread Jean-Marc Spaggiari
Hi Jingych, This is the HBase 0.96.2 code. Not CDH5 specific. Do you have more details on you OOME? Did you figured why it occured? JM 2014-05-22 1:20 GMT-04:00 jingych : > Hello, everyone! > > I found the CDH5 hbase client swallowed the Outofmemory exception. > > It didn't throw out, cause th

Re: preGetOp being called on the Coprocessor when issued with delete request

2014-05-22 Thread Jean-Marc Spaggiari
Hi Vinay, > But regarding my earlier concern, calling get in case of delete request, in order to check the time stamp, can we not query hbase directly using the scanner avoiding the CP hooks..?? If you configure a CP to be called, HBase will call it. There isn't really any way to avoid that. You

Re: [ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread Konstantin Boudnik
Great! Congratulations! On May 22, 2014 2:46:16 PM PDT, James Taylor wrote: >I'm pleased to announce that Apache Phoenix has graduated from the >incubator to become a top level project. Thanks so much for all your >help >and support - we couldn't have done it without the fantastic HBase >communi

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread jingych
Hi, JM & everyone! Thanks for your reply! My java client, use the HTable#put(Put) method with 2M buffer to commit rows. While the client running for a while, the jvisualvm shows the htable threads increasing and the heap size increased too. Here is the snapshot: i research the implementation

Re: CDH5 hbase client outofmemory

2014-05-22 Thread Ted Yu
The snapshot didn't go through. Can you put it on some website and give us the URL ? Cheers On May 22, 2014, at 7:38 PM, jingych wrote: > Hi, JM & everyone! > > Thanks for your reply! > > My java client, use the HTable#put(Put) method with 2M buffer to commit rows. > While the client runn

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread jingych
Sorry. This is a image. I do not know where can i upload it. Could you please give me some suggestions. jingych From: Ted Yu Date: 2014-05-23 10:45 To: user@hbase.apache.org CC: Jean-Marc Spaggiari; user Subject: Re: CDH5 hbase client outofmemory The snapshot didn't go through. Can you put

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread Ted Yu
There're many options. https://*imgur*.com/ is one. Cheers On Thu, May 22, 2014 at 7:53 PM, jingych wrote: > Sorry. This is a image. I do not know where can i upload it. > > Could you please give me some suggestions. > > > > > jingych > > From: Ted Yu > Date: 2014-05-23 10:45 > To: user@hbase

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread Jean-Marc Spaggiari
postimage.org is also an option, etc. 2014-05-22 22:59 GMT-04:00 Ted Yu : > There're many options. > > https://*imgur*.com/ is one. > > Cheers > > > On Thu, May 22, 2014 at 7:53 PM, jingych wrote: > > > Sorry. This is a image. I do not know where can i upload it. > > > > Could you please give m

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread jingych
Thanks! But we have the security policy, I can't access these website %>_<% I try some, but doesn't work, i give up ╮(╯▽╰)╭ The post snapshot just monitor the heap size and threads. It shows that: The heap size is 512M. While the client is running, the first 10min, the heap size is stable betwee

what in regionserver's Used Heap

2014-05-22 Thread sunweiwei
Hi I'm using hbase0.96. In hbase web, I see : Max Heap is 16.0 G Memstore Size is 208.6 M Cache Size is 138M Cache Free is 6.2G And Used Heap is 10.2 G. Used Heap is large. I want to know what could be in then Used Heap. Thanks.

Re: Re: CDH5 hbase client outofmemory

2014-05-22 Thread Ted Yu
w.r.t. your questions toward the bottom of your email: CDH HBase is one distribution of Apache HBase. As you can see from the url, it is based on 0.96.1.1 HDP is another distribution. There're many projects under Apache Software Foundation, such as YARN, HDFS, HBase, Phoenix. You can get more info

Re: what in regionserver's Used Heap

2014-05-22 Thread Ted Yu
On regionsever:60030/rs-status#regionMemstoreStats, you should be able to see how much memstore each region uses. You can also use ganglia, etc to view the metrics. See http://hbase.apache.org/book.html#hbase_metrics (15.4.4.3 and 15.4.4.7) Cheers On Thu, May 22, 2014 at 8:39 PM, sunweiwei wrot

Re: preGetOp being called on the Coprocessor when issued with delete request

2014-05-22 Thread ramkrishna vasudevan
Because internally deleteColumn with LATEST_TIMESTAMP does a get to find the exact latest version on which the delete applies we do a get. User perspective it may not be needed but since a read happens on those blocks where the latest version of the cell resides we have to know the metric. Even t

答复: what in regionserver's Used Heap

2014-05-22 Thread sunweiwei
Hi Ted I have checked regionsever:60030/rs-status#regionMemstoreStats. Memstore and Cache Size is very small. But Used Heap is very large. Is there Any other thing in the Used Heap, and use lots of heaps? Thanks -邮件原件- 发件人: Ted Yu [mailto:yuzhih...@gmail.com] 发送时间: 2014年5月23日 11:59

RE: [ANNOUNCE] Apache Phoenix has graduated as a top level project

2014-05-22 Thread Job Thomas
Congratulations. From: James Taylor [mailto:jamestay...@apache.org] Sent: Fri 5/23/2014 3:16 AM To: HBase Dev; HBase User Subject: [ANNOUNCE] Apache Phoenix has graduated as a top level project I'm pleased to announce that Apache Phoenix has graduated from

Re: Re: How to set number of mappers when using HBaseStorage

2014-05-22 Thread leiwang...@gmail.com
Let me have a try of the fair scheduler. Thanks, Lei leiwang...@gmail.com From: Bryan Beaudreault Date: 2014-05-21 23:20 To: user Subject: Re: How to set number of mappers when using HBaseStorage Hansi's scheduler configuration is the real solution here, but combining more regions into a si