Я пытаюсь запустить простой пример подсчета слов в Hadoop, и после запуска jar моя программа застревает в состоянии ПРИНЯТО, но окончательное состояние, похоже, НЕ УКАЗАНО.
Мой файл yarn-site.xml равен
<?xml version="1.0"?>
<configuration>
<property>
<name>yarn.nodemanager.resource.memory-mb</name>
<value>2200</value>
<description>Amount of physical memory, in MB, that can be allocated for containers.</description>
</property>
<property>
<name>yarn.scheduler.minimum-allocation-mb</name>
<value>500</value>
</property>
</configuration>
И файл mapred-site.xml:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>mapreduce.framework.name</name>
<value>yarn</value>
</property>
</configuration>
![enter image description here](https://i.stack.imgur.com/Y5wZc.png)
![enter image description here](https://i.stack.imgur.com/Zhlse.png)
Скажите, пожалуйста, что мне делать.Спасибо.