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>