Advertisement
Guest User

DataNode ,Client hdfs-site.xml

a guest
Feb 9th, 2012
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.12 KB | None | 0 0
  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.federation.nameservices</name>
  10.         <value>ns1,ns2,ns3</value>
  11.     </property>
  12.  
  13.     <!-- Configuring Name Node 1 -->
  14.  
  15.     <property>
  16.         <name>dfs.namenode.rpc-address.ns1</name>
  17.         <value>hdfs://localhost:33333/</value>
  18.     </property>
  19.     <property>
  20.     <name>dfs.namenode.http-address.ns1</name>
  21.         <value>localhost:44444</value>
  22.     </property>
  23.  
  24.     <!-- Configuring Name Node 2 -->
  25.  
  26.     <property>
  27.         <name>dfs.namenode.rpc-address.ns2</name>
  28.         <value>hdfs://localhost:33334</value>
  29.     </property>
  30.     <property>
  31.         <name>dfs.namenode.http-address.ns2</name>
  32.         <value>localhost:44446</value>
  33.     </property>
  34.  
  35.     <!-- Configuring Name Node 3 -->
  36.  
  37.     <property>
  38.         <name>dfs.namenode.rpc-address.ns3</name>
  39.         <value>hdfs://localhost:33335</value>
  40.     </property>
  41.     <property>
  42.         <name>dfs.namenode.http-address.ns3</name>
  43.         <value>localhost:44448</value>
  44.     </property>
  45.  
  46.     <property>
  47.         <name>dfs.replication</name>
  48.         <value>1</value>
  49.     </property>
  50. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement