Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 27D0CE5F8 for ; Thu, 3 Jan 2013 22:36:37 +0000 (UTC) Received: (qmail 44334 invoked by uid 500); 3 Jan 2013 22:36:37 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 44309 invoked by uid 500); 3 Jan 2013 22:36:37 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 44300 invoked by uid 99); 3 Jan 2013 22:36:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Jan 2013 22:36:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Jan 2013 22:36:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 9AD5C23888E7; Thu, 3 Jan 2013 22:36:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1428648 - in /accumulo/trunk/test/system/auto/stress: batchWrite.py restart.py Date: Thu, 03 Jan 2013 22:36:14 -0000 To: commits@accumulo.apache.org From: vines@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130103223614.9AD5C23888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vines Date: Thu Jan 3 22:36:14 2013 New Revision: 1428648 URL: http://svn.apache.org/viewvc?rev=1428648&view=rev Log: ACCUMULO-608 - more tolerance Modified: accumulo/trunk/test/system/auto/stress/batchWrite.py accumulo/trunk/test/system/auto/stress/restart.py Modified: accumulo/trunk/test/system/auto/stress/batchWrite.py URL: http://svn.apache.org/viewvc/accumulo/trunk/test/system/auto/stress/batchWrite.py?rev=1428648&r1=1428647&r2=1428648&view=diff ============================================================================== --- accumulo/trunk/test/system/auto/stress/batchWrite.py (original) +++ accumulo/trunk/test/system/auto/stress/batchWrite.py Thu Jan 3 22:36:14 2013 @@ -48,7 +48,7 @@ class WriteLots(unittest.TestCase, TestU def runTest(self): N = 10*len(self.hosts) - waitTime = 60 * N * self.options.rows / 200000 + 30 + waitTime = 60 * N * self.options.rows / 200000 + 90 log.info("Starting %d clients", N) handles = [] Modified: accumulo/trunk/test/system/auto/stress/restart.py URL: http://svn.apache.org/viewvc/accumulo/trunk/test/system/auto/stress/restart.py?rev=1428648&r1=1428647&r2=1428648&view=diff ============================================================================== --- accumulo/trunk/test/system/auto/stress/restart.py (original) +++ accumulo/trunk/test/system/auto/stress/restart.py Thu Jan 3 22:36:14 2013 @@ -78,11 +78,11 @@ class KilledTabletServerTest(RestartTest self.waitForStop(handle, timeout) def readRows(self): - self.stopRead(self.startRead(), 300) + self.stopRead(self.startRead(), 400) def runTest(self): - self.waitForStop(self.ingester, 60) + self.waitForStop(self.ingester, 120) log.info("Ingester stopped") log.info("starting scan") self.readRows() @@ -138,7 +138,7 @@ class KilledTabletDuringScan(KilledTable def runTest(self): - self.waitForStop(self.ingester, 30) + self.waitForStop(self.ingester, 90) log.info("Ingester stopped") handle = self.startRead() @@ -148,14 +148,14 @@ class KilledTabletDuringScan(KilledTable self.start_tserver(host) log.info("Tablet server on %s started", host) log.info("starting scan") - self.stopRead(handle, 400) + self.stopRead(handle, 500) if host != self.hosts[-1]: handle = self.startRead() class KilledTabletDuringShutdown(KilledTabletServerTest): def runTest(self): - self.waitForStop(self.ingester, 30) + self.waitForStop(self.ingester, 90) log.info("Ingester stopped") self.stop_tserver(self.hosts[0], signal.SIGKILL) log.info("This can take a couple minutes")