Author: boryas
Date: Wed Jun 2 18:53:55 2010
New Revision: 950718
URL: http://svn.apache.org/viewvc?rev=950718&view=rev
Log:
HDFS-1019. Incorrect default values for delegation tokens in hdfs-default.xml
Modified:
hadoop/hdfs/trunk/CHANGES.txt
hadoop/hdfs/trunk/src/java/hdfs-default.xml
Modified: hadoop/hdfs/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/CHANGES.txt?rev=950718&r1=950717&r2=950718&view=diff
==============================================================================
--- hadoop/hdfs/trunk/CHANGES.txt (original)
+++ hadoop/hdfs/trunk/CHANGES.txt Wed Jun 2 18:53:55 2010
@@ -28,6 +28,10 @@ Trunk (unreleased changes)
HDFS-1119. Introduce a GSet interface to BlocksMap. (szetszwo)
BUG FIXES
+
+ HDFS-1019. Incorrect default values for delegation tokens in
+ hdfs-default.xml (jnp via boryas)
+
HDFS-1039. Service should be set in the token in JspHelper.getUGI(jnp via
boryas)
HDFS-1038. FIX. A test missed in a previous commit for this JIRA. (boryas)
Modified: hadoop/hdfs/trunk/src/java/hdfs-default.xml
URL:
http://svn.apache.org/viewvc/hadoop/hdfs/trunk/src/java/hdfs-default.xml?rev=950718&r1=950717&r2=950718&view=diff
==============================================================================
--- hadoop/hdfs/trunk/src/java/hdfs-default.xml (original)
+++ hadoop/hdfs/trunk/src/java/hdfs-default.xml Wed Jun 2 18:53:55 2010
@@ -490,23 +490,24 @@ creations/deletions), or "all".</descrip
<property>
<name>dfs.namenode.delegation.key.update-interval</name>
- <value>86400</value>
- <description>The update frequency of master key for delegation tokens
- in the namenode.
+ <value>86400000</value>
+ <description>The update interval for master key for delegation tokens
+ in the namenode in milliseconds.
</description>
</property>
<property>
<name>dfs.namenode.delegation.token.max-lifetime</name>
- <value>604800</value>
- <description>The maximum lifetime for which a delegation token is valid.
+ <value>604800000</value>
+ <description>The maximum lifetime in milliseconds for which a delegation
+ token is valid.
</description>
</property>
<property>
<name>dfs.namenode.delegation.token.renew-interval</name>
- <value>86400</value>
- <description>The frequency of renewal of delegation token.
+ <value>86400000</value>
+ <description>The renewal interval for delegation token in milliseconds.
</description>
</property>