Don't like ads? PRO users don't see any ads ;-)
Guest

hdfs-site

By: a guest on Jul 31st, 2012  |  syntax: None  |  size: 0.96 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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>dfs.replication</name>
  9.   <value>1</value>
  10.   <description>Default block replication.
  11.   The actual number of replications can be specified when the file is created.
  12.   The default is used if replication is not specified in create time.
  13.   </description>
  14. </property>
  15. <property>
  16.         <!-- URI of NN. Fully qualified. No IP.-->
  17.         <name>fs.default.name</name>
  18.         <value>hdfs://localhost:54310</value>
  19.   </property>
  20.   <property>
  21.         <name>dfs.permissions</name>
  22.         <value>false</value>
  23.         <final>false</final>
  24.   </property>
  25. <property>
  26.   <name>dfs.data.dir</name>
  27. <value>/data/datadir</value>
  28. </property>
  29.  
  30. <property>
  31.   <name>dfs.name.dir</name>
  32.   <value>/data/namedir</value>
  33. </property>
  34.  
  35. <property>
  36.   <name>dfs.datanode.max.xcievers</name>
  37.   <value>4096</value>
  38. </property>
  39. </configuration>