You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-role-nginx/hadoop/roles/common/templates/hadoop_conf/mapred-site.xml.j2

22 lines
666 B

<configuration>
<property>
<name>mapred.job.tracker</name>
<value>{{ hostvars[groups['hadoop_masters'][0]]['ansible_hostname'] }}:{{ hadoop['mapred_job_tracker_port'] }}</value>
</property>
<property>
<name>mapred.local.dir</name>
<value>{{ hadoop["mapred_local_dir"] | join(',') }}</value>
</property>
<property>
<name>mapred.task.tracker.http.address</name>
<value>0.0.0.0:{{ hadoop['mapred_task_tracker_http_address_port'] }}</value>
</property>
<property>
<name>mapred.job.tracker.http.address</name>
<value>0.0.0.0:{{ hadoop['mapred_job_tracker_http_address_port'] }}</value>
</property>
</configuration>