Author: brock
Date: Thu Dec 26 19:44:45 2013
New Revision: 1553563

URL: http://svn.apache.org/r1553563
Log:
HIVE-5524 - Unwanted delay in getting Hive metastore connection with 
METASTORE_CLIENT_CONNECT_RETRY_DELAY (Rajesh Balamohan via Brock Noland)

Modified:
    
hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java

Modified: 
hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
URL: 
http://svn.apache.org/viewvc/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java?rev=1553563&r1=1553562&r2=1553563&view=diff
==============================================================================
--- 
hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
 (original)
+++ 
hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/HiveMetaStoreClient.java
 Thu Dec 26 19:44:45 2013
@@ -322,7 +322,7 @@ public class HiveMetaStoreClient impleme
         }
       }
       // Wait before launching the next round of connection retries.
-      if (retryDelaySeconds > 0) {
+      if (!isConnected && retryDelaySeconds > 0) {
         try {
           LOG.info("Waiting " + retryDelaySeconds + " seconds before next 
connection attempt.");
           Thread.sleep(retryDelaySeconds * 1000);


Reply via email to