Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2439 | 04-27-2020 03:48 AM | |
4870 | 04-26-2020 06:18 PM | |
3974 | 04-26-2020 06:05 PM | |
3212 | 04-13-2020 08:53 PM | |
4918 | 03-31-2020 02:10 AM |
07-06-2017
06:25 PM
You might consider using the HDP Sandbox on Azure: https://hortonworks.com/hadoop-tutorial/deploying-hortonworks-sandbox-on-microsoft-azure/
... View more
07-06-2017
06:41 AM
1 Kudo
Removing the "hdp-1.novalocal" from the hosts list and using the hostname script for setting the public / private hostname did it for me! Thank you so much, I think you saved my whole week!
... View more
07-03-2017
11:38 AM
1 Kudo
Creating a new cluster, I will verify and update in this thread
... View more
06-30-2017
10:57 AM
@Jay SenSharma worked after creating truststore. Thanks a lot.
... View more
07-06-2017
03:44 PM
Big thanks for that!! Now back on track with the tutorial because I was getting an error trying to delete that record!!
... View more
06-27-2017
08:06 PM
Hi @Jay SenSharma, Thanks for a quick reply. You are right, it's not a 'zip' file, it's an 'Open Virtualization Format Archive' file which I mistakenly assumed to be a zip file. Interestingly, it could be unzipped (using 7-zip) and also, without unzipping, was imported into the Manager. Thank you. Regards, Manoj.
... View more
06-23-2017
12:24 PM
Yes, you are right. Never imagined it would be a typo, thanks though!
... View more
06-23-2017
08:01 AM
@qiancai zhou Please refer to the following piece of code to understand the logic: https://github.com/apache/ambari/blob/release-2.5.1/ambari-agent/src/main/python/ambari_agent/RecoveryManager.py#L226-L257 def requires_recovery(self, component):
"""
Recovery is allowed for:
INISTALLED --> STARTED
INIT --> INSTALLED --> STARTED
RE-INSTALLED (if configs do not match)
"""
if not self.enabled():
return False
if not self.configured_for_recovery(component):
return False
if component not in self.statuses:
return False
status = self.statuses[component]
if self.auto_start_only or self.auto_install_start:
if status["current"] == status["desired"]:
return False
if status["desired"] not in self.allowed_desired_states:
return False
else:
if status["current"] == status["desired"] and status['stale_config'] == False:
return False
if status["desired"] not in self.allowed_desired_states or status["current"] not in self.allowed_current_states:
return False
logger.info("%s needs recovery, desired = %s, and current = %s.", component, status["desired"], status["current"])
return True
pass .
... View more
06-22-2017
06:09 PM
@Hugo Felix
Try this: ###### on Zeppelin Host run the below commans ######
# mv /var/lib/ambari-agent/cache /var/lib/ambari-agent/cache_OLD
# mkdir /var/lib/ambari-agent/cache
# ambari-agent restart
... View more