Member since
02-02-2023
9
Posts
0
Kudos Received
0
Solutions
03-15-2023
11:26 PM
Sorry for late reply , in logs it is running but the actual final status in the resource manager is UI is failed.
... View more
02-26-2023
05:20 AM
It is worth looking at the application logs here and checking user permissions for your queue here
... View more
02-26-2023
05:16 AM
In addition to looking at the application logs here You can check for user permissions for your queue a. In the "Queue Details" section (YARN Queue Manager UI), scroll down to the "Access Control" subsection. In the "Access Control" section, you will see a table that lists the users and groups that have been granted permissions to submit jobs to the queue, and the type of permissions that have been granted (e.g. "Submit Application", "Administer Queue", etc.).
... View more
02-26-2023
05:08 AM
1 Kudo
I see a disabled log aggregation for these applications. You can enable the log aggregation and look for possible reasons in the application logs. To view the entire log for an application yarn logs -applicationId <application-id> Below is a sample snippet of yarn-site.xml to enable log aggregation. You can look up or add these properties in the Hadoop management application (like cloudera-manager) as well. <property> <name>yarn.log-aggregation-enable</name> <value>true</value> </property> <property> <name>yarn.log-aggregation.retain-seconds</name> <value>604800</value> </property> <property> <name>yarn.log-aggregation.retain-check-interval-seconds</name> <value>3600</value> </property>
... View more