Hi Team,

I have set up a one node cluster with hadoop-2.2.0. When i run sample
wordcount example I don't see it in web-UI on *<ip>:8088 *nor in jobHistory
though my job gets submitted successfully and I see the output file also
under the specified path.
Attached are the configuration files that I have edited.

It will be great if someone can guide me to what am I doing wrong and how
can fix that!

Thanks in advance!
Divya
<?xml version="1.0"?>
<!-- Licensed under the Apache License, Version 2.0 (the "License"); you 
	may not use this file except in compliance with the License. You may obtain 
	a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless 
	required by applicable law or agreed to in writing, software distributed 
	under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
	OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
	the specific language governing permissions and limitations under the License. 
	See accompanying LICENSE file. -->
<configuration>

	<!-- Site specific YARN configuration properties -->
	<property>
		<name>yarn.resourcemanager.resource-tracker.address</name>
		<value>10.9.209.25:8025</value>
		<description>host is the hostname of the resource manager and
			port is the port on which the NodeManagers contact the Resource Manager.
		</description>
	</property>

	<property>
		<name>yarn.resourcemanager.scheduler.address</name>
		<value>10.9.209.25:8030</value>
		<description>host is the hostname of the resourcemanager and port is
			the port
			on which the Applications in the cluster talk to the Resource Manager.
		</description>
	</property>

	<property>
		<name>yarn.resourcemanager.scheduler.class</name>
		<value>org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler</value>
		<description>In case you do not want to use the default scheduler</description>
	</property>

	<property>
		<name>yarn.resourcemanager.address</name>
		<value>10.9.209.25:8045</value>
		<description>the host is the hostname of the ResourceManager and the
			port is the port on
			which the clients can talk to the Resource
			Manager.
		</description>
	</property>

	<property>
		<name>yarn.nodemanager.local-dirs</name>
		<value></value>
		<description>the local directories used by the nodemanager</description>
	</property>

	<property>
		<name>yarn.nodemanager.address</name>
		<value>10.9.209.25:8050</value>
		<description>the nodemanagers bind to this port</description>
	</property>

	<property>
		<name>yarn.nodemanager.resource.memory-mb</name>
		<value>10240</value>
		<description>the amount of memory on the NodeManager in GB</description>
	</property>

	<property>
		<name>yarn.nodemanager.remote-app-log-dir</name>
		<value>/app-logs</value>
		<description>directory on hdfs where the application logs are moved to </description>
	</property>

	<property>
		<name>yarn.nodemanager.log-dirs</name>
		<value></value>
		<description>the directories used by Nodemanagers as log directories</description>
	</property>

	<property>
		<name>yarn.nodemanager.aux-services</name>
		<value>mapreduce_shuffle</value>
		<description>shuffle service that needs to be set for Map Reduce to
			run </description>
	</property>

	<property>
		<name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name>
		<value>org.apache.hadoop.mapred.ShuffleHandler</value>
	</property>
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!--
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License. See accompanying LICENSE file.
-->

<!-- Put site-specific property overrides in this file. -->

<configuration>
	<property>
		<name>fs.default.name</name>
		<value>hdfs://10.9.209.25:9000</value>
	</property>
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!--
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License. See accompanying LICENSE file.
-->

<!-- Put site-specific property overrides in this file. -->

<configuration>
	<property>
		<name>dfs.replication</name>
		<value>1</value>
	</property>
	<property>
		<name>dfs.permissions</name>
		<value>false</value>
	</property>
</configuration>

Reply via email to