Member since
11-07-2016
637
Posts
253
Kudos Received
144
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2720 | 12-06-2018 12:25 PM | |
| 2861 | 11-27-2018 06:00 PM | |
| 2193 | 11-22-2018 03:42 PM | |
| 3567 | 11-20-2018 02:00 PM | |
| 6271 | 11-19-2018 03:24 PM |
11-03-2017
06:20 AM
@Charles Bradbury, Glad that the issue is resolved. Can you kindly accept the answer so that community users can quickly find the answer.
... View more
11-02-2017
07:54 AM
1 Kudo
@Palash Dutta, The value of falcon.app.type is "falcon" by default. It is passed as a run time parameter while starting falcon server. In your falcon host you can run the below command and see "-Dfalcon.app.type=falcon" ps -ef | grep falcon The flow is like this. falcon_start.py -> service_start.py -> service-start.sh . The falcon_start.py passes "falcon" as the argument to service_start.py where falcon is the falcon.app.type. Attaching the snippet below of falcon_start.py service_start_cmd = os.path.join(base_dir, 'bin', 'service_start.py')
subprocess.call(['python', service_start_cmd, 'falcon', other_args]) You can find these scripts under /usr/hdp/<hdp-version>/falcon/bin. Hope this helps. Thanks, Aditya
... View more
11-01-2017
11:57 AM
1 Kudo
@Shravan Kumar, Yes. You can do it by enabling Ambari user creation hooks . Check the below link
https://docs.hortonworks.com/HDPDocuments/Ambari-2.5.2.0/bk_ambari-administration/content/create_user_home_directory.html Thanks, Aditya
... View more
10-31-2017
06:20 PM
@Charles Bradbury, You can do this as well. Or add the "zx6878a" user to hadoop group. Thanks, Aditya
... View more
10-31-2017
11:47 AM
1 Kudo
@Charles Bradbury, This is a issue with permission. The /spark2-history should belong to the spark user. You can change it as below hdfs dfs -chown spark /spark2-history Thanks, Aditya
... View more
10-27-2017
07:56 AM
@Nirmal J, Can you set dfs.namenode.rpc-address to ip-10-0-223-116 and restart the namenode. Hope you have the below mapping in /etc/hosts 10.0.223.116 ip-10-0-223-116
... View more
10-27-2017
04:19 AM
@Nirmal J, I would recommend using hostnames than IPs. If you want to use IPs instead , use either all private IPs or all public. As you have configured all private IPs in /etc/hosts , it is better to use private IPs. But my recommendation is to go with hostnames. Also , make sure that you able to ping with the private IPs and hostnames from one box to another
... View more
10-26-2017
06:11 PM
@uri ben-ari, This value is calculated using the stack advisor 'yarn.nodemanager.resource.memory-mb' = int(round(min(clusterData['containers']* clusterData['ramPerContainer'], nodemanagerMinRam))))
... View more
10-26-2017
05:56 PM
Please change it to hostname and try restarting the services. Make sure that "telnet hostname 8020" works
... View more
10-26-2017
05:53 PM
@Nirmal J Can you please check the value of dfs.namenode.rpc-address from Advanced hdfs-site.xml Thanks,
Aditya
... View more