source: hadoop-0.18.3/debian/conf/hadoop-site.xml @ 50

Last change on this file since 50 was 50, checked in by jazz, 15 years ago
  • Initial unstable package rule for hadoop 0.18.3
File size: 702 bytes
Line 
1<?xml version="1.0"?>
2<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
3
4<!-- Put site-specific property overrides in this file. -->
5
6<configuration>
7  <property>
8    <name>fs.default.name</name>
9    <value>hdfs://localhost:9000/</value>
10    <description>
11      The name of the default file system. Either the literal string
12      "local" or a host:port for NDFS.
13    </description>
14  </property>
15  <property>
16    <name>mapred.job.tracker</name>
17    <value>localhost:9001</value>
18    <description>
19    The host and port that the MapReduce job tracker runs at. If
20    "local", then jobs are run in-process as a single map and
21    reduce task.
22    </description>
23  </property>
24</configuration>
Note: See TracBrowser for help on using the repository browser.