I am using Hadoop2.2 . I see that my work has been completed with success. I can scan the file system to find a way out. However, when I look through http://NNode:8088/cluster/apps , I cannot see any applications that have been executed so far (I have completed 3 wordcount tasks, but none of them are covered here).
Are there any configurations that need to be considered?

Here is yarn-site.xml
<property> <name>yarn.resourcemanager.hostname</name> <value>NNode</value> </property> <property> <name>yarn.nodemanager.aux-services</name> <value>mapreduce_shuffle</value> </property>
Here is mapred-site.xml :
<property> <name>mapreduce.framework.name</name> <value>yarn</value> </property>
I also have a job history server running:
jps 4422 NameNode 5452 Jps 4695 SecondaryNameNode 4924 ResourceManager 72802 Jps 5369 JobHistoryServer
source share