hdfs-site.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <configuration>
  4. <property>
  5. <name>dfs.replication</name>
  6. <value>1</value>
  7. </property>
  8. <property>
  9. <name>dfs.permissions</name>
  10. <value>false</value>
  11. </property>
  12. <property>
  13. <!-- specify this so that running 'hadoop namenode -format' formats the right dir -->
  14. <name>dfs.name.dir</name>
  15. <value>/var/lib/hadoop-0.20/cache/hadoop/dfs/name</value>
  16. </property>
  17. <!-- Enable Hue Plugins -->
  18. <property>
  19. <name>dfs.namenode.plugins</name>
  20. <value>org.apache.hadoop.thriftfs.NamenodePlugin</value>
  21. <description>Comma-separated list of namenode plug-ins to be activated.
  22. </description>
  23. </property>
  24. <property>
  25. <name>dfs.datanode.plugins</name>
  26. <value>org.apache.hadoop.thriftfs.DatanodePlugin</value>
  27. <description>Comma-separated list of datanode plug-ins to be activated.
  28. </description>
  29. </property>
  30. <property>
  31. <name>dfs.thrift.address</name>
  32. <value>0.0.0.0:10090</value>
  33. </property>
  34. </configuration>