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 2011/12/27 15:53:52 UTC

svn commit: r1224920 - /incubator/accumulo/branches/1.3/bin/tup.sh

Author: ecn
Date: Tue Dec 27 14:53:51 2011
New Revision: 1224920

URL: http://svn.apache.org/viewvc?rev=1224920&view=rev
Log:
ACCUMULO-237 back-port periodic wait for ssh requests from 1.4 branch

Modified:
    incubator/accumulo/branches/1.3/bin/tup.sh

Modified: incubator/accumulo/branches/1.3/bin/tup.sh
URL: http://svn.apache.org/viewvc/incubator/accumulo/branches/1.3/bin/tup.sh?rev=1224920&r1=1224919&r2=1224920&view=diff
==============================================================================
--- incubator/accumulo/branches/1.3/bin/tup.sh (original)
+++ incubator/accumulo/branches/1.3/bin/tup.sh Tue Dec 27 14:53:51 2011
@@ -25,11 +25,18 @@ SLAVES=$ACCUMULO_HOME/conf/slaves
 
 echo -n "Starting tablet servers and loggers ..."
 
+count=1
 for server in `grep -v '^#' "$SLAVES"`
 do 
     echo -n "."
     ${bin}/start-server.sh $server logger &
     ${bin}/start-server.sh $server tserver "tablet server" &
+    count=`expr $count + 1`
+    if [ `expr $count % 72` -eq 0 ] ;
+    then
+       echo
+       wait
+    fi
 done
 
 echo " done"