You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/03/15 19:47:55 UTC

svn commit: r1457059 - /accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java

Author: ecn
Date: Fri Mar 15 18:47:55 2013
New Revision: 1457059

URL: http://svn.apache.org/r1457059
Log:
ACCUMULO-727 retry more times

Modified:
    accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java

Modified: accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java?rev=1457059&r1=1457058&r2=1457059&view=diff
==============================================================================
--- accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java (original)
+++ accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/conf/Property.java Fri Mar 15 18:47:55 2013
@@ -177,7 +177,7 @@ public enum Property {
   TSERV_BULK_ASSIGNMENT_THREADS("tserver.bulk.assign.threads", "1", PropertyType.COUNT,
       "The master delegates bulk file processing and assignment to tablet servers. After the bulk file has been processed, the tablet server will assign"
           + " the file to the appropriate tablets on all servers.  This property controls the number of threads used to communicate to the other servers."),
-  TSERV_BULK_RETRY("tserver.bulk.retry.max", "3", PropertyType.COUNT,
+  TSERV_BULK_RETRY("tserver.bulk.retry.max", "5", PropertyType.COUNT,
       "The number of times the tablet server will attempt to assign a file to a tablet as it migrates and splits."),
   TSERV_BULK_TIMEOUT("tserver.bulk.timeout", "5m", PropertyType.TIMEDURATION, "The time to wait for a tablet server to process a bulk import request."),
   TSERV_MINTHREADS("tserver.server.threads.minimum", "20", PropertyType.COUNT, "The minimum number of threads to use to handle incoming requests."),