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  
    44<!-- Put site-specific property overrides in this file. -->
    55
    66<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>
    815</configuration>
  • conf/hdfs-site.xml

    old new  
    44<!-- Put site-specific property overrides in this file. -->
    55
    66<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>
    815</configuration>
  • conf/mapred-site.xml

    old new  
    44<!-- Put site-specific property overrides in this file. -->
    55
    66<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>
    819</configuration>