You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@whirr.apache.org by Fuad Efendi <fu...@efendi.ca> on 2011/06/28 19:40:36 UTC

CDH HBase

I found this options:
whirr.hbase-install-function=install_cdh_hbase

whirr.hbase-configure-function=configure_cdh_hbase


However, I couldn't find any reference in Java code. This explains why it
doesn't workŠ

I want to install Cloudera distributions of Hadoop and Hbase; it works for
Hadoop only (0.5.0 and trunk)


-- 
Fuad Efendi
http://www.tokenizer.ca






Re: CDH HBase

Posted by Andrei Savu <sa...@gmail.com>.
Fuad, I'm glad it works for you. Adrian any ideas? Is this issue
related to jclouds?

It would be great if you could open an issue on JIRA.

Cheers,

-- Andrei Savu / andreisavu.ro

On Tue, Jun 28, 2011 at 10:13 PM, Fuad Efendi <fu...@efendi.ca> wrote:
> Thanks Andrei,
>
>
> ANOTHER ISSUE: SocketTimeoutException (Amazon EC2, during AMI
> installation? Not sure)
>
> I resolved it by explicitly using (with Java 6 for Mac OS X), in a
> Main.java (chackstyle will complain!)
>
>
> public static void main(String... args) throws Exception {
>
>    System.setProperty("sun.net.client.defaultConnectTimeout", "60000");
>    System.setProperty("sun.net.client.defaultReadTimeout", "60000");
>
>
>
>
> -Fuad
>
>
>
>
>
>
>
> On 11-06-28 2:11 PM, "Andrei Savu" <sa...@gmail.com> wrote:
>
>>Hi,
>>
>>We know about that issue :(. There is an work in progress patch that
>>addresses it:
>>
>>https://issues.apache.org/jira/browse/WHIRR-334
>>
>>(will always use dot: whirr.<service>.install-function)
>>
>>Unfortunately there is still a race condition and sometimes the
>>hbase-master or the hbase-regionserver does not start because HDFS is
>>not yet ready for service. We are working to address that one in:
>>
>>https://issues.apache.org/jira/browse/WHIRR-221
>>
>>Cheers,
>>-- Andrei Savu / andreisavu.ro
>>
>>
>>
>>
>>On Tue, Jun 28, 2011 at 8:50 PM, Fuad Efendi <fu...@efendi.ca> wrote:
>>> This probably explains what is wrong:
>>>
>>>   public static final String KEY_INSTALL_FUNCTION =
>>> "whirr.hbase.install-function";
>>>
>>>   public static final String KEY_CONFIGURE_FUNCTION =
>>> "whirr.hbase.configure-function";
>>>
>>> At the same time, whirr-hbase-test.properties:
>>>
>>> whirr.hbase-install-function=install_cdh_hbase
>>>
>>> whirr.hbase-configure-function=configure_cdh_hbase
>>>
>>> Dot VS dashŠ
>>>
>>>
>>>
>>>
>>>
>>>
>>> From: Fuad Efendi <fu...@efendi.ca>
>>> Reply-To: <wh...@incubator.apache.org>
>>> Date: Tue, 28 Jun 2011 13:40:36 -0400
>>> To: <wh...@incubator.apache.org>
>>> Subject: CDH HBase
>>>
>>> I found this options:
>>>
>>> whirr.hbase-install-function=install_cdh_hbase
>>>
>>> whirr.hbase-configure-function=configure_cdh_hbase
>>>
>>> However, I couldn't find any reference in Java code. This explains why
>>>it
>>> doesn't workŠ
>>> I want to install Cloudera distributions of Hadoop and Hbase; it works
>>>for
>>> Hadoop only (0.5.0 and trunk)
>>>
>>> --
>>>
>>> Fuad Efendi
>>>
>>> http://www.tokenizer.ca
>>>
>>>
>
>
>

Re: CDH HBase

Posted by Fuad Efendi <fu...@efendi.ca>.
Thanks Andrei,


ANOTHER ISSUE: SocketTimeoutException (Amazon EC2, during AMI
installation? Not sure)

I resolved it by explicitly using (with Java 6 for Mac OS X), in a
Main.java (chackstyle will complain!)


public static void main(String... args) throws Exception {
	  
    System.setProperty("sun.net.client.defaultConnectTimeout", "60000");
    System.setProperty("sun.net.client.defaultReadTimeout", "60000");
	  



-Fuad







On 11-06-28 2:11 PM, "Andrei Savu" <sa...@gmail.com> wrote:

>Hi,
>
>We know about that issue :(. There is an work in progress patch that
>addresses it:
>
>https://issues.apache.org/jira/browse/WHIRR-334
>
>(will always use dot: whirr.<service>.install-function)
>
>Unfortunately there is still a race condition and sometimes the
>hbase-master or the hbase-regionserver does not start because HDFS is
>not yet ready for service. We are working to address that one in:
>
>https://issues.apache.org/jira/browse/WHIRR-221
>
>Cheers,
>-- Andrei Savu / andreisavu.ro
>
>
>
>
>On Tue, Jun 28, 2011 at 8:50 PM, Fuad Efendi <fu...@efendi.ca> wrote:
>> This probably explains what is wrong:
>>
>>   public static final String KEY_INSTALL_FUNCTION =
>> "whirr.hbase.install-function";
>>
>>   public static final String KEY_CONFIGURE_FUNCTION =
>> "whirr.hbase.configure-function";
>>
>> At the same time, whirr-hbase-test.properties:
>>
>> whirr.hbase-install-function=install_cdh_hbase
>>
>> whirr.hbase-configure-function=configure_cdh_hbase
>>
>> Dot VS dashŠ
>>
>>
>>
>>
>>
>>
>> From: Fuad Efendi <fu...@efendi.ca>
>> Reply-To: <wh...@incubator.apache.org>
>> Date: Tue, 28 Jun 2011 13:40:36 -0400
>> To: <wh...@incubator.apache.org>
>> Subject: CDH HBase
>>
>> I found this options:
>>
>> whirr.hbase-install-function=install_cdh_hbase
>>
>> whirr.hbase-configure-function=configure_cdh_hbase
>>
>> However, I couldn't find any reference in Java code. This explains why
>>it
>> doesn't workŠ
>> I want to install Cloudera distributions of Hadoop and Hbase; it works
>>for
>> Hadoop only (0.5.0 and trunk)
>>
>> --
>>
>> Fuad Efendi
>>
>> http://www.tokenizer.ca
>>
>>



Re: CDH HBase

Posted by Andrei Savu <sa...@gmail.com>.
Hi,

We know about that issue :(. There is an work in progress patch that
addresses it:

https://issues.apache.org/jira/browse/WHIRR-334

(will always use dot: whirr.<service>.install-function)

Unfortunately there is still a race condition and sometimes the
hbase-master or the hbase-regionserver does not start because HDFS is
not yet ready for service. We are working to address that one in:

https://issues.apache.org/jira/browse/WHIRR-221

Cheers,
-- Andrei Savu / andreisavu.ro




On Tue, Jun 28, 2011 at 8:50 PM, Fuad Efendi <fu...@efendi.ca> wrote:
> This probably explains what is wrong:
>
>   public static final String KEY_INSTALL_FUNCTION =
> "whirr.hbase.install-function";
>
>   public static final String KEY_CONFIGURE_FUNCTION =
> "whirr.hbase.configure-function";
>
> At the same time, whirr-hbase-test.properties:
>
> whirr.hbase-install-function=install_cdh_hbase
>
> whirr.hbase-configure-function=configure_cdh_hbase
>
> Dot VS dash…
>
>
>
>
>
>
> From: Fuad Efendi <fu...@efendi.ca>
> Reply-To: <wh...@incubator.apache.org>
> Date: Tue, 28 Jun 2011 13:40:36 -0400
> To: <wh...@incubator.apache.org>
> Subject: CDH HBase
>
> I found this options:
>
> whirr.hbase-install-function=install_cdh_hbase
>
> whirr.hbase-configure-function=configure_cdh_hbase
>
> However, I couldn't find any reference in Java code. This explains why it
> doesn't work…
> I want to install Cloudera distributions of Hadoop and Hbase; it works for
> Hadoop only (0.5.0 and trunk)
>
> --
>
> Fuad Efendi
>
> http://www.tokenizer.ca
>
>

Re: CDH HBase

Posted by Fuad Efendi <fu...@efendi.ca>.
This probably explains what is wrong:



  public static final String KEY_INSTALL_FUNCTION =
"whirr.hbase.install-function";

  public static final String KEY_CONFIGURE_FUNCTION =
"whirr.hbase.configure-function";





At the same time, whirr-hbase-test.properties:

whirr.hbase-install-function=install_cdh_hbase

whirr.hbase-configure-function=configure_cdh_hbase



Dot VS dashŠ










From:  Fuad Efendi <fu...@efendi.ca>
Reply-To:  <wh...@incubator.apache.org>
Date:  Tue, 28 Jun 2011 13:40:36 -0400
To:  <wh...@incubator.apache.org>
Subject:  CDH HBase

I found this options:
whirr.hbase-install-function=install_cdh_hbase

whirr.hbase-configure-function=configure_cdh_hbase


However, I couldn't find any reference in Java code. This explains why it
doesn't workŠ

I want to install Cloudera distributions of Hadoop and Hbase; it works for
Hadoop only (0.5.0 and trunk)


-- 
Fuad Efendi
http://www.tokenizer.ca