source: proiecte/HadoopJUnit/hadoop-0.20.1/src/c++/libhdfs/tests/conf/hdfs-site.xml @ 120

Last change on this file since 120 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 1.5 KB
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
8<property>
9  <name>dfs.replication</name>
10  <value>1</value>
11  <description>Default block replication.
12  The actual number of replications can be specified when the file is created.
13  The default is used if replication is not specified in create time.
14  </description>
15</property>
16
17<property>
18  <name>dfs.support.append</name>
19  <value>true</value>
20  <description>Allow appends to files.
21  </description>
22</property>
23
24<property>
25  <name>dfs.datanode.address</name>
26  <value>0.0.0.0:50012</value>
27  <description>
28    The address where the datanode server will listen to.
29    If the port is 0 then the server will start on a free port.
30  </description>
31</property>
32
33<property>
34  <name>dfs.datanode.http.address</name>
35  <value>0.0.0.0:50079</value>
36  <description>
37    The datanode http server address and port.
38    If the port is 0 then the server will start on a free port.
39  </description>
40</property>
41
42<property>
43  <name>dfs.datanode.ipc.address</name>
44  <value>0.0.0.0:50022</value>
45  <description>
46    The datanode ipc server address and port.
47    If the port is 0 then the server will start on a free port.
48  </description>
49</property>
50
51<property>
52  <name>dfs.http.address</name>
53  <value>0.0.0.0:50072</value>
54  <description>
55    The address and the base port where the dfs namenode web ui will listen on.
56    If the port is 0 then the server will start on a free port.
57  </description>
58</property>
59
60</configuration>
Note: See TracBrowser for help on using the repository browser.