forked from soreana/hadoop-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcore-site.multi-node.xml
44 lines (35 loc) · 1.22 KB
/
core-site.multi-node.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
<property>
<name>hadoop.tmp.dir</name>
<value>/app/hadoop/tmp</value>
<description>A base for other temporary directories.</description>
</property>
<property>
<name>fs.defaultFS</name>
<value>hdfs://master:54310</value>
<description>
The name of the default file system. A URI whose scheme and authority
determine the FileSystem implementation. The uri's scheme determines
the config property (fs.SCHEME.impl) naming the FileSystem implementation
class. The uri's authority is used to determine the host, port, etc. for a filesystem.
</description>
</property>
<property>
<name>dfs.http.address</name>
<value>50077</value>
</property>
<property>
<name>dfs.datanode.http.address</name>
<value>50075</value>
</property>
<property>
<name>dfs.secondary.http.address</name>
<value>50090</value>
</property>
<property>
<name>dfs.backup.http.address</name>
<value>50105</value>
</property>
</configuration>