You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by th...@apache.org on 2014/02/21 22:01:04 UTC

svn commit: r1570705 - /hive/trunk/data/conf/hive-site.xml

Author: thejas
Date: Fri Feb 21 21:01:04 2014
New Revision: 1570705

URL: http://svn.apache.org/r1570705
Log:
HIVE-6464 : Test configuration: reduce the duration for which lock attempts are retried (Thejas Nair, reviewed by Navis)

Modified:
    hive/trunk/data/conf/hive-site.xml

Modified: hive/trunk/data/conf/hive-site.xml
URL: http://svn.apache.org/viewvc/hive/trunk/data/conf/hive-site.xml?rev=1570705&r1=1570704&r2=1570705&view=diff
==============================================================================
--- hive/trunk/data/conf/hive-site.xml (original)
+++ hive/trunk/data/conf/hive-site.xml Fri Feb 21 21:01:04 2014
@@ -148,6 +148,19 @@
 </property>
 
 <property>
+  <key>hive.unlock.numretries</key>
+  <value>2</value>
+  <description>The number of times you want to retry to do one unlock</description>
+</property>
+
+<property>
+  <key>hive.lock.sleep.between.retries</key>
+  <value>2</value>
+  <description>The sleep time (in seconds) between various retries</description>
+</property>
+
+
+<property>
   <name>fs.pfile.impl</name>
   <value>org.apache.hadoop.fs.ProxyLocalFileSystem</value>
   <description>A proxy for local file system used for cross file system testing</description>