Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 42C6E200B8F for ; Fri, 16 Sep 2016 01:53:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4156A160ADA; Thu, 15 Sep 2016 23:53:15 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 87FE3160AC6 for ; Fri, 16 Sep 2016 01:53:14 +0200 (CEST) Received: (qmail 49737 invoked by uid 500); 15 Sep 2016 23:53:13 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 49726 invoked by uid 99); 15 Sep 2016 23:53:13 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Sep 2016 23:53:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8B2D6E05D9; Thu, 15 Sep 2016 23:53:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: adar@apache.org To: commits@kudu.apache.org Date: Thu, 15 Sep 2016 23:53:14 -0000 Message-Id: <6201949930074e009cadf02be60d8de6@git.apache.org> In-Reply-To: <71cc0828c5a94017aa7eaa22683b840f@git.apache.org> References: <71cc0828c5a94017aa7eaa22683b840f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] kudu git commit: webserver-stress-itest: increase timeouts archived-at: Thu, 15 Sep 2016 23:53:15 -0000 webserver-stress-itest: increase timeouts The flaky test dashboard shows a lot of ASAN and TSAN failures while waiting for tablets to start running, so let's drastically increase that timeout. Additionally, some ASAN builds timed out while creating the test table, so let's also reduce the number of checkers run in ASAN. Change-Id: I7fb042be33af0b4ecbdc39af471eab3e1c872d53 Reviewed-on: http://gerrit.cloudera.org:8080/4427 Tested-by: Kudu Jenkins Reviewed-by: Alexey Serbin Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/af7f9c80 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/af7f9c80 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/af7f9c80 Branch: refs/heads/master Commit: af7f9c805c96b6ce6854105b369b6d02fbe7105a Parents: b0b273e Author: Adar Dembo Authored: Thu Sep 15 13:44:58 2016 -0700 Committer: Adar Dembo Committed: Thu Sep 15 23:51:18 2016 +0000 ---------------------------------------------------------------------- src/kudu/integration-tests/webserver-stress-itest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/af7f9c80/src/kudu/integration-tests/webserver-stress-itest.cc ---------------------------------------------------------------------- diff --git a/src/kudu/integration-tests/webserver-stress-itest.cc b/src/kudu/integration-tests/webserver-stress-itest.cc index 903e3bb..d108993 100644 --- a/src/kudu/integration-tests/webserver-stress-itest.cc +++ b/src/kudu/integration-tests/webserver-stress-itest.cc @@ -36,8 +36,8 @@ using std::vector; // Tests that pounding the web UI doesn't cause any crashes. TEST_F(KuduTest, TestWebUIDoesNotCrashCluster) { -#ifdef THREAD_SANITIZER - // When using TSAN, more than one checker is too much load on the cluster. +#if defined(THREAD_SANITIZER) || defined(ADDRESS_SANITIZER) + // When using a sanitizer, checkers place a lot of load on the cluster. const int kWebUICheckers = 1; #else const int kWebUICheckers = 10; @@ -78,7 +78,7 @@ TEST_F(KuduTest, TestWebUIDoesNotCrashCluster) { ASSERT_OK(cluster.Restart()); ASSERT_OK(cluster.WaitForTabletsRunning(cluster.tablet_server(0), kNumTablets, - MonoDelta::FromSeconds(30))); + MonoDelta::FromSeconds(180))); NO_FATALS(cluster.AssertNoCrashes()); }