You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2012/05/04 02:39:24 UTC

svn commit: r1333702 - /incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml

Author: rvs
Date: Fri May  4 00:39:23 2012
New Revision: 1333702

URL: http://svn.apache.org/viewvc?rev=1333702&view=rev
Log:
BIGTOP-572. Fix HDFS directory values in pseudo-conf hdfs-site.xml for 0.23+ NN/DN/SNN

Modified:
    incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml

Modified: incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml
URL: http://svn.apache.org/viewvc/incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml?rev=1333702&r1=1333701&r2=1333702&view=diff
==============================================================================
--- incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml (original)
+++ incubator/bigtop/trunk/bigtop-packages/src/common/hadoop/conf.pseudo/hdfs-site.xml Fri May  4 00:39:23 2012
@@ -38,14 +38,14 @@
   </property>
   <property>
      <name>dfs.namenode.name.dir</name>
-     <value>/var/lib/hadoop-hdfs/cache/${user.name}/dfs/name</value>
+     <value>file:///var/lib/hadoop-hdfs/cache/${user.name}/dfs/name</value>
   </property>
   <property>
      <name>dfs.namenode.checkpoint.dir</name>
-     <value>/var/lib/hadoop-hdfs/cache/${user.name}/dfs/namesecondary</value>
+     <value>file:///var/lib/hadoop-hdfs/cache/${user.name}/dfs/namesecondary</value>
   </property>
   <property>
      <name>dfs.datanode.data.dir</name>
-     <value>/var/lib/hadoop-hdfs/cache/${user.name}/dfs/data</value>
+     <value>file:///var/lib/hadoop-hdfs/cache/${user.name}/dfs/data</value>
   </property>
 </configuration>