Member since
05-16-2016
785
Posts
114
Kudos Received
39
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2328 | 06-12-2019 09:27 AM | |
| 3579 | 05-27-2019 08:29 AM | |
| 5725 | 05-27-2018 08:49 AM | |
| 5244 | 05-05-2018 10:47 PM | |
| 3113 | 05-05-2018 07:32 AM |
06-28-2017
05:45 AM
1 Kudo
Would you consider using Bucketing instead of partitioning because it decomposes data sets into much more manageable parts but still depends on the use case. insertion may take some time but intended for fast read .
... View more
06-28-2017
04:58 AM
@mbigelow " It is part of the magic that happens when you install a gateway role " Are you referring to the NFS gateway role ?
... View more
06-27-2017
11:34 PM
@Tim Armstrong As suggested I bumped the JAVA_TOOL_OPTIONS=-Xss2m . do you have any rational behind for -Xss2m ? can we increase it more does it depends on any parameter like number of quries and hits to impala daemon .
... View more
06-27-2017
10:56 PM
@Tomas79i am ruining CDH 5.10 in production it is nice and clean However when we performed a fresh install on other box we had this JRE issue . fixed it with your post . Apprecaited it .
... View more
06-27-2017
09:55 PM
Is you cluster managed by cloduera manager ? if not it is pretty straight forward you can grab it from /etc/hadoop/conf/ grab the core-site.xml , hdfs-site.xml , hive-site.xml
... View more
06-27-2017
06:48 PM
Did you set your datanode secure port to 1004 ? Since I dont know the exact configuration in your system I assume that enabling the below should fix your problem based on the error that you had shown. hadoop.rpc.protection = privacy (core-site.xml)
dfs.encrypt.data.transfer to true (hdfs-site.xml) Restart all the dameons to effect .
... View more
06-27-2017
10:05 AM
Could you check the parameter value of this in your ruining datanode hdfs-site.xml
dfs.data.transfer.protection = ?
... View more
06-27-2017
08:10 AM
Although I havent tried , trying putting 777 on the chmod to that directory and run it as root. chmod -R 777 /etc/init.d/ it is very very bad practice though.
... View more
06-27-2017
06:00 AM
1 Kudo
I hope you are using CDH trying runining the below sudo service hadoop-hdfs-datanode start
sudo service hadoop-hdfs-namenode start
sudo service hadoop-hdfs-secondarynamenode start
then replace start with status / restart . create a normal user , dont use root add the user to group hadoop
... View more