Member since
08-08-2017
1652
Posts
30
Kudos Received
11
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2001 | 06-15-2020 05:23 AM | |
| 16486 | 01-30-2020 08:04 PM | |
| 2149 | 07-07-2019 09:06 PM | |
| 8355 | 01-27-2018 10:17 PM | |
| 4740 | 12-31-2017 10:12 PM |
03-21-2018
07:56 AM
@Jay I will open another thread because it is complicate and I will give it more simple
... View more
11-15-2018
04:16 AM
@Mayank Bhatt do add "--protocol https --port 8443" options if ambari is running on HTTPS.
... View more
03-14-2018
11:16 AM
1 Kudo
@Michael Bronson In the other thread : https://community.hortonworks.com/questions/176682/api-via-script-how-to-verify-zkfailovercontroller.html?childToView=176685#answer-176685 If you just replace the ZKFC with JOURNALNODE then you should be able to find the same. # curl -u admin:admin -H "X-Requested-By: ambari" -X GET "http://amb25101.example.com:8080/api/v1/clusters/plain_ambari/components?fields=ServiceComponentInfo/service_name,ServiceComponentInfo/component_name,ServiceComponentInfo/state,host_components/HostRoles/host_name,host_components/HostRoles/state" | grep -A 2 "\"component_name\" \: \"JOURNALNODE\"" | awk '{print $NF}' > /tmp/requests_details.txt; sed -e '1,2d' -e s'/--//g' -e 's/\n//g' -e 's/"//g' -e '/^$/d' /tmp/requests_details.txt | awk 'NR%3{printf "%s ",$0;next;}1' . Example Output: STARTED JOURNALNODE, amb25101.example.com,
STARTED JOURNALNODE, amb25102.example.com,
STARTED JOURNALNODE, amb25103.example.com, .
... View more
03-14-2018
11:13 AM
1 Kudo
@Michael Bronson You can try something like following: # curl -u admin:admin -H "X-Requested-By: ambari" -X GET "http://amb25101.example.com:8080/api/v1/clusters/plain_ambari/components?fields=ServiceComponentInfo/service_name,ServiceComponentInfo/component_name,ServiceComponentInfo/state,host_components/HostRoles/host_name,host_components/HostRoles/state" | grep -A 2 "\"component_name\" \: \"ZKFC\"" | awk '{print $NF}' > /tmp/requests_details.txt; sed -e '1,2d' -e s'/--//g' -e 's/\n//g' -e 's/"//g' -e '/^$/d' /tmp/requests_details.txt | awk 'NR%3{printf "%s ",$0;next;}1' . Example Output: STARTED ZKFC, amb25102.example.com,
STARTED ZKFC, amb25103.example.com,
... View more
03-12-2018
06:06 AM
@Jay thank you so much , regrading the cluster size ( https://community.hortonworks.com/questions/177371/cant-start-ambari-collector.html ) , dose cluster size mean - Number of workers machines ?
... View more
03-13-2018
06:49 AM
@Michael Bronson No if the AMS is running fine for now then we do not need to restart it. We can keep monitoring it for some time to see if everything is going fine.
... View more
03-11-2018
10:26 PM
1 Kudo
@Michael Bronson Have you followed the steps mentioned in the following article: https://community.hortonworks.com/content/supportkb/48998/correct-procedure-to-re-ip-a-client-host-in-a-clus.html This is just to see if by any chance if you might have missed any step. Specially this command should return the new IP address of the node # nslookup nodename.fqdn . Else it might be a DNS cache issue.
... View more
03-11-2018
08:46 AM
@Jay - yes - the same ambari versions ( before the upgrade - 2.5 and after the upgrade - 2.6 ) , both clusters are upgrade from previous versions - ambari - 2.5.0.3 & HDP - 2.6.0.3 , so this is upgrade installation , cluster was installed before one month
... View more
03-06-2018
07:05 AM
@Jay just one note do you see any coralation between MTU=9000 to less performance , or this is not relevant at all ?
... View more
03-05-2018
11:53 PM
@Michael Bronson For the script based Zookeeper Service check , I have added a response here: https://community.hortonworks.com/questions/176909/ambari-trigger-service-checkspy-bug.html?childToView=176948#comment-176948 .
... View more