Member since
07-30-2019
111
Posts
186
Kudos Received
35
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3944 | 02-07-2018 07:12 PM | |
3177 | 10-27-2017 06:16 PM | |
3241 | 10-13-2017 10:30 PM | |
5725 | 10-12-2017 10:09 PM | |
1630 | 06-29-2017 10:19 PM |
04-03-2017
05:08 PM
2 Kudos
These pages are still present. You can navigate to the jmx servlet on the DataNode web UI. e.g. http://<datanode>:50075/jmx
... View more
03-27-2017
11:46 PM
Just curious - why did you restart the Data Nodes? Did they crash?
... View more
03-27-2017
06:37 PM
1 Kudo
Hi @Joshua Adeleke, how frequently do you see the errors. These are some times seen in busy clusters and usually clients/HDFS recover from transient failures. If there are no job or task failures around the time you of the errors, I would just ignore them. Edit: I took a look at your attached log file. There's a lot of GC pauses as @Namit Maheshwari pointed out. Try increasing the DataNode heap size and PermGen/NewGen allocations until the GC pauses go away. 2017-03-25 10:10:18,219 WARN util.JvmPauseMonitor (JvmPauseMonitor.java:run(192)) - Detected pause in JVM or host machine (eg GC): pause of approximately 44122ms
GC pool 'ConcurrentMarkSweep' had collection(s): count=1 time=44419ms
... View more
03-27-2017
06:31 PM
Hi @JJ Tsien, 1. We don't support setting quotas via a configuration file. Quotas must be set using the setQuota command issued by an administrator. 2. There is no way to specify quotas as a percentage of total storage either, sorry.
... View more
03-07-2017
06:10 PM
3 Kudos
@Viswa, the Apache documentation provides a good description. https://hadoop.apache.org/docs/r2.7.3/hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html#Secondary_NameNode I have never seen Checkpoint/Backup node being used in practice and these should be considered deprecated. I recommend using the Secondary NameNode. Ideally you should use NameNode HA which eliminates the single point of failure. https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/HDFSHighAvailabilityWithQJM.html If you use Ambari to install HDP, SecondaryNameNode is enabled by default and NameNode HA can be enabled using a wizard.
... View more
03-07-2017
06:03 PM
3 Kudos
Hi @Akash S, this is a known issue and it is benign. You can safely ignore the alerts. If you want to avoid seeing them you can append the following options to HADOOP_DATANODE_OPTS via Ambari and restart DataNodes. -XX:CMSInitiatingOccupancyFraction=70-XX:+UseCMSInitiatingOccupancyOnly-XX:ConcGCThreads=8-XX:+UseConcMarkSweepGC Also asked here: https://community.hortonworks.com/questions/85961/ambari-alert-datanode-heapsize-alert.html#answer-85964
... View more
03-01-2017
10:08 PM
Hi @Kumar Veerappan, Yes this alert seems to be new for Ambari 2.2.2. I don't see it in the 2.2.1 release.
... View more
02-27-2017
10:49 PM
This is a benign issue and the alerts can be safely ignored. It was addressed by AMBARI-18936. You can fix it by manually adding the following options to HADOOP_DATANODE_OPTS via Ambari: -XX:CMSInitiatingOccupancyFraction=70 -XX:+UseCMSInitiatingOccupancyOnly -XX:ConcGCThreads=8 -XX:+UseConcMarkSweepGC
... View more
01-20-2017
10:15 PM
3 Kudos
@apappu is correct. These JVM options should be added to HADOOP_DATANODE_OPTS in the hadoop-env template. After making the changes you should restart all the DataNodes (there is no need to restart the NameNodes). I recommend restarting DataNodes two at a time.
... View more
11-01-2016
10:28 PM
1 Kudo
This error has nothing to do with the missing user-specific group. The NameNode has no requirement that the group name match the user name. As long as the id command succeeded and returned any groups the NameNode would not have logged the error. This error was likely due to a temporary infrastructure issue as pointed out by @Smart Solutions in a later comment. The following article is a good starting point for any issues related to groups lookups. https://community.hortonworks.com/articles/38591/hadoop-and-ldap-usage-load-patterns-and-tuning.html
... View more