如何向hadoo集群提交job

首先,你当然得有hadoop-site.xml文件

<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://hostname:9900</value>
</property>
<property>
<name>mapred.job.tracker</name>
<value>hostname:9901</value>
</property>
<property>
<name>dfs.replication</name>
<value>3</value>
</property>
</configuration>

然后,你要提交你的jar包。

      有两种方法,1

                              使用这样的代码,job.setJar("file:///E:\\hadoopcount\\hadoopCount.jar");

                        2

                               也可以这样,job.set("tmpjars", file:///E:\\hadoopcount\\hadoopCount.jar);

 

至此,你就可以提交你的job了。

 

你可能感兴趣的:(hadoop,xml)