Member since
08-08-2017
1652
Posts
30
Kudos Received
11
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1921 | 06-15-2020 05:23 AM | |
| 15487 | 01-30-2020 08:04 PM | |
| 2074 | 07-07-2019 09:06 PM | |
| 8121 | 01-27-2018 10:17 PM | |
| 4573 | 12-31-2017 10:12 PM |
12-25-2018
10:42 PM
1 Kudo
You are missing "m", like 8192m, without "m" the unit is byte, so only 8 kilobytes! Also note that 4G is usually enough for DN heap.
... View more
12-26-2018
06:02 AM
3 Kudos
@Michael Bronson As for automatic clean up not getting triggered, well it may be due to (or at-least related to) this unresolved bug reported on Yarn. https://issues.apache.org/jira/browse/YARN-4540
... View more
12-21-2018
11:55 AM
yes they are: MOON_SERVICE JWE_SER GFT_SER
... View more
12-17-2018
04:10 PM
but if from ambari we cant set it to 30m , then why API should work? from my understanding the value should set in XML , so what is the diffrences here ?
... View more
05-10-2019
05:45 AM
I think hortonworks close the test about 7.6 version and approve it
... View more
12-13-2018
05:43 PM
can you also give your opinion about this - https://community.hortonworks.com/questions/229475/what-is-the-next-hdp-version-that-should-be-releas.html
... View more
12-06-2018
01:28 AM
1 Kudo
@Michael Bronson Following API call will tell us how many DataNodes are live. # curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/services/HDFS/components/DATANODE?fields=ServiceComponentInfo/started_count,ServiceComponentInfo/total_count
"started_count": Shows the live (running) DataNodes. "total_count" : Shows how many DataNodes are there in the cluster. In order to find out the Individual DataNode Status you will need to supply the hostnames where the DataNodes are installed in the following API call. # curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx4.example.com/host_components/DATANODE?fields=HostRoles/host_name,HostRoles/state (OR other host) # curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx1.example.com/host_components/DATANODE?fields=HostRoles/host_name,HostRoles/state
... View more
12-04-2018
11:45 AM
2 Kudos
I can suggest, for 20 kafka machines you can go with 3 zookeeper servers
... View more
12-04-2018
07:25 PM
@Michael Bronson The page Designing a ZooKeeper explains that a 3 node cluster an survive 1 node failure. A 5 node cluster can survive 2 node failures.
... View more
12-04-2018
12:41 PM
hdp-select status | grep -i hdfs
hadoop-hdfs-client - 2.6.4.0-91
hadoop-hdfs-datanode - 2.6.4.0-91
... View more