Ticket #29542: patch-conf.diff
File patch-conf.diff, 1.4 KB (added by humem (humem), 13 years ago) |
---|
-
conf/core-site.xml
old new 4 4 <!-- Put site-specific property overrides in this file. --> 5 5 6 6 <configuration> 7 7 <property> 8 <name>fs.default.name</name> 9 <value>hdfs://localhost:9000</value> 10 </property> 11 <property> 12 <name>hadoop.tmp.dir</name> 13 <value>@hadoop_tmp_dir@</value> 14 </property> 8 15 </configuration> -
conf/hdfs-site.xml
old new 4 4 <!-- Put site-specific property overrides in this file. --> 5 5 6 6 <configuration> 7 7 <property> 8 <name>dfs.replication</name> 9 <value>1</value> 10 </property> 11 <property> 12 <name>dfs.permissions</name> 13 <value>false</value> 14 </property> 8 15 </configuration> -
conf/mapred-site.xml
old new 4 4 <!-- Put site-specific property overrides in this file. --> 5 5 6 6 <configuration> 7 7 <property> 8 <name>mapred.job.tracker</name> 9 <value>localhost:9001</value> 10 </property> 11 <property> 12 <name>mapred.tasktracker.map.tasks.maximum</name> 13 <value>@tasks_max@</value> 14 </property> 15 <property> 16 <name>mapred.tasktracker.reduce.tasks.maximum</name> 17 <value>@tasks_max@</value> 18 </property> 8 19 </configuration>