Member since
09-25-2015
46
Posts
139
Kudos Received
16
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5389 | 11-27-2017 07:37 PM | |
4974 | 09-18-2017 06:28 PM | |
2749 | 09-08-2017 06:40 PM | |
1378 | 07-17-2017 07:13 PM | |
1258 | 06-29-2017 06:18 PM |
06-26-2017
07:46 PM
4 Kudos
Hi @Suhel, As mentioned in https://community.hortonworks.com/questions/35751/manage-yarn-local-log-dirs-space.html, We can safely delete files in /yarn/local if there are no applications running.
... View more
06-26-2017
06:34 PM
1 Kudo
Hi @Gunjan Dhawas, No, ApplicationMaster doesnot directly communicate with the containers. Its the nodemanagers which communicate directly with the containers. NodeManager's core part is containerManagement. ApplicationMaster, framework specific entity is responsible for negotiating resources from the ResourceManager and working with the NodeManager(s) to execute and monitor the containers and their resource consumption More information on Nodemanager and AM - https://hortonworks.com/blog/apache-hadoop-yarn-nodemanager/ https://hortonworks.com/blog/apache-hadoop-yarn-concepts-and-applications/
... View more
06-23-2017
06:36 PM
9 Kudos
Hi @Anthony Seluk, When you disable High Availability, automatic failover also gets disabled. Hence when active RM is killed, it doesn't do automatic failover to standby RM [that is, making standby RM as active]. So there will not be any active RM; instead we have two standbyRMs. In such scenario, we need to do manual failover. More info on manual failover is given below https://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/ResourceManagerHA.html
... View more
05-22-2017
06:33 PM
4 Kudos
Hi @priyanshu hasija, We can ignore the first two lines of exception as suggested in https://community.hortonworks.com/questions/35089/dataxceiver-error-processing-unknown-operation-jav.html. ERROR org.apache.hadoop.hdfs.server.datanode.DataNode: infoobjects-Latitude-3550:1025:DataXceiver error processing unknown operation src: /127.0.0.1:35436 dst: /127.0.0.1:1025 java.io.EOFException: Premature EOF: no length prefix available at org.apache.hadoop.hdfs.protocolPB.PBHelper.vintPrefixed(PBHelper.java:2207) at
The following exception indicates that "kinit" is not being done. Can you please do kinit before running the hdfs copyFromLocal command ? More Info - https://community.hortonworks.com/articles/4755/common-kerberos-errors-and-solutions.html at org.apache.hadoop.hdfs.protocol.datatransfer.sasl.SaslDataTransferServer.doSaslHandshake
... View more
04-26-2017
11:47 PM
4 Kudos
Hi @Sandeep SIngh, Each mapper and reducer is a java process and we need some reserve memory to store the java code. Hence the Map/Reducer memory should be greater than the JVM heap size.
... View more
04-14-2017
06:22 PM
6 Kudos
Hi @Carol Elliott, The applications are submitted to "Default Queue". As seen in the Yarn RM UI, "Default Queue" is full and hence it doesnt have capacity to allocate for task containers. Only Application Master container is being allocated and hence the application remains in ACCEPTED state. Please submit application to other Queue or increase capacity for Default Queue.
... View more
03-29-2017
10:25 PM
2 Kudos
Hi @dvt isoft, You cannt actually submit MR / Tez job via Yarn Webservices. Can you please try with Distributed Shell application if you want to use REST api? Or you can store your job in HDFS and use OOZIE workflow over it or use SPARK. https://community.hortonworks.com/questions/89692/can-we-submit-a-yarn-job-through-rest.html
... View more
03-29-2017
09:55 PM
5 Kudos
Hi @Aditya Mamidala, You also need to set yarn.nodemanager.localizer.cache.target-size-mb along with yarn.nodemanager.localizer.cache.cleanup.interval-ms. Also the resources are not cleaned up if they are being used by running containers. More details given in below blog https://hortonworks.com/blog/resource-localization-in-yarn-deep-dive/
... View more
03-24-2017
11:52 PM
1 Kudo
Hi @dvt isoft, Can you please post the application logs and RM logs to debug further into this.
... View more
03-23-2017
08:00 PM
1 Kudo
Can you please accept my answer if it answered your question ? 🙂
... View more