Re: kudu configuration issue

2016-10-27 Thread Adar Dembo
(dropping issues@kudu; that list is just for e-mails generated by our
JIRA bug tracker)

To change the data directories, you'll need to change the value of
--fs_data_dirs in /etc/kudu/{master,tserver}.gflagfile. Adding it to
/etc/default/kudu-master the way you did will have no effect. Make
sure the new directories exist, and that the Kudu user can
read/write/execute to them.

Background: /etc/default/kudu-{master,tserver} are shell scripts that
are sourced by the Kudu init.d scripts. The bulk of Kudu configuration
must be defined the gflagfiles, found in /etc/kudu. The reason for
this separation is because the init.d scripts also need to know about
a few parameter values, so those parameters are passed in via shell
script instead of gflagfiles.

On Thu, Oct 27, 2016 at 8:28 AM, Dinesh Bhat  wrote:
> Hi Chun-fu,
>
> You should see a filesystem laid out with subdirectories like ’tablet-meta’, 
> ‘data’, ‘consensus-meta’, etc when you ls -l on the specified path.
> Typically, the top-level-dir is specified as arg: 
> "—fs_data_dirs=/home/myname/kudu" and internally kudu figures out the 
> filesystem layout.
>
> Hope that helps.
> Tx,
>> On Oct 27, 2016, at 2:44 AM, Yang, Chun-Fu (Eric,HPSW-BTO-R) 
>>  wrote:
>>
>> Hi,
>> I  just installed kudu on Ubuntu 14.04.1 x86_64 system.
>> After installation, kudu-master and kudu-tserver services started and can 
>> access the web ui.
>>
>> Afther that,I stop the service and  configured   
>> --fs_data_dirs=/home/myname/kudu/data in /etc/default/kudu-master
>> Then when I start kudu-master, the following message was printed in the 
>> console
>>
>> /etc/default/kudu-master: line 1: --fs_data_dirs=/home/myname/kudu/data: No 
>> such file or directory
>> But the folder  /home/myname/kudu/data do exist, I just created it before 
>> change the configuration.
>>
>> What's the problem here?
>>
>> Thanks,
>> Chunfu
>>
>


Re: kudu configuration issue

2016-10-27 Thread Dinesh Bhat
Hi Chun-fu,

You should see a filesystem laid out with subdirectories like ’tablet-meta’, 
‘data’, ‘consensus-meta’, etc when you ls -l on the specified path.
Typically, the top-level-dir is specified as arg: 
"—fs_data_dirs=/home/myname/kudu" and internally kudu figures out the 
filesystem layout.

Hope that helps.
Tx,
> On Oct 27, 2016, at 2:44 AM, Yang, Chun-Fu (Eric,HPSW-BTO-R) 
>  wrote:
> 
> Hi,
> I  just installed kudu on Ubuntu 14.04.1 x86_64 system.
> After installation, kudu-master and kudu-tserver services started and can 
> access the web ui.
> 
> Afther that,I stop the service and  configured   
> --fs_data_dirs=/home/myname/kudu/data in /etc/default/kudu-master
> Then when I start kudu-master, the following message was printed in the 
> console
> 
> /etc/default/kudu-master: line 1: --fs_data_dirs=/home/myname/kudu/data: No 
> such file or directory
> But the folder  /home/myname/kudu/data do exist, I just created it before 
> change the configuration.
> 
> What's the problem here?
> 
> Thanks,
> Chunfu
> 



Apache Hadoop Decision Makers Contacts

2016-10-27 Thread Louise Thompson
Hello there,



If you are in the market to target *Apache Hadoop Leads*, then we are happy
to inform you of our recent Apache Hadoop users email list release with all
business details for businesses of all size, across a variety of industries.



Data Fields we provide: Name, Title, Email, Phone Numbers, Company Name,
and Company Details like Physical Address, Web Address, Revenue Size,
Employee Size and industry.



*We also have other technology users like: Cloudera, Spark, Hadoop,
Hortonworks, SAP HANA, Oracle, Apache Cassandra, MongoDB and many more.*



Please review and let me know your thoughts I will get back to you counts,
pricing and more information in my next email.



Regards,

Louise Thompson


Re: kudu configuration issue

2016-10-27 Thread Suzanne McIntosh
Hi,
It looks the form for /etc/kudu/conf/master.gflagfile is:

* --fs_data_dirs=/home/myname/kudu/data*


but in /etc/default/kudu-master the form is:

*export FLAGS_data_dir=/home/myname/kudu/data* (to create an env variable).



On Thu, Oct 27, 2016 at 5:44 AM, Yang, Chun-Fu (Eric,HPSW-BTO-R) <
chun-fu.y...@hpe.com> wrote:

> Hi,
> I  just installed kudu on Ubuntu 14.04.1 x86_64 system.
> After installation, kudu-master and kudu-tserver services started and can
> access the web ui.
>
> Afther that,I stop the service and  configured
>  --fs_data_dirs=/home/myname/kudu/data in /etc/default/kudu-master
> Then when I start kudu-master, the following message was printed in the
> console
>
> /etc/default/kudu-master: line 1: --fs_data_dirs=/home/myname/kudu/data:
> No such file or directory
> But the folder  /home/myname/kudu/data do exist, I just created it before
> change the configuration.
>
> What's the problem here?
>
> Thanks,
> Chunfu
>
>


Apache Hadoop Decision Makers Contacts

2016-10-27 Thread Earlene Hoban
Hello there,



If you are in the market to target *Apache Hadoop Leads*, then we are happy
to inform you of our recent Apache Hadoop users email list release with all
business details for businesses of all size, across a variety of industries.



Data Fields we provide: Name, Title, Email, Phone Numbers, Company Name,
and Company Details like Physical Address, Web Address, Revenue Size,
Employee Size and industry.



*We also have other technology users like: Cloudera, Spark, Hadoop,
Hortonworks, SAP HANA, Oracle, Apache Cassandra, MongoDB and many more.*



Please review and let me know your thoughts I will get back to you counts,
pricing and more information in my next email.



Regards,

Earlene Hoban


kudu configuration issue

2016-10-27 Thread Yang, Chun-Fu (Eric,HPSW-BTO-R)
Hi,
I  just installed kudu on Ubuntu 14.04.1 x86_64 system.
After installation, kudu-master and kudu-tserver services started and can 
access the web ui.

Afther that,I stop the service and  configured   
--fs_data_dirs=/home/myname/kudu/data in /etc/default/kudu-master
Then when I start kudu-master, the following message was printed in the console

/etc/default/kudu-master: line 1: --fs_data_dirs=/home/myname/kudu/data: No 
such file or directory
But the folder  /home/myname/kudu/data do exist, I just created it before 
change the configuration.

What's the problem here?

Thanks,
Chunfu