You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2017/11/22 06:10:00 UTC

[3/6] kudu git commit: KUDU-2222. update_scan_delta_compact-test: increase write timeout

KUDU-2222. update_scan_delta_compact-test: increase write timeout

In ASAN builds, the 5-second timeout on 1000-row batches was not sufficient to
prevent write timeouts.

With this, the test passed on dist-test 100/100[1], whereas previously it
failed 87/100[2].

[1] http://dist-test.cloudera.org/job?job_id=todd.1511306572.114498
[2] http://dist-test.cloudera.org/job?job_id=todd.1511304651.87727

Change-Id: Ic393579320b87e0f5cec494870441b8aa69db3b6
Reviewed-on: http://gerrit.cloudera.org:8080/8628
Reviewed-by: Alexey Serbin <as...@cloudera.com>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/3a224377
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/3a224377
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/3a224377

Branch: refs/heads/master
Commit: 3a2243774e00d834dfa967171a4f527c881a9e96
Parents: 44608be
Author: Todd Lipcon <to...@apache.org>
Authored: Tue Nov 21 15:19:32 2017 -0800
Committer: Todd Lipcon <to...@apache.org>
Committed: Wed Nov 22 01:32:21 2017 +0000

----------------------------------------------------------------------
 src/kudu/integration-tests/update_scan_delta_compact-test.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/3a224377/src/kudu/integration-tests/update_scan_delta_compact-test.cc
----------------------------------------------------------------------
diff --git a/src/kudu/integration-tests/update_scan_delta_compact-test.cc b/src/kudu/integration-tests/update_scan_delta_compact-test.cc
index f6bcf64..fb017a5 100644
--- a/src/kudu/integration-tests/update_scan_delta_compact-test.cc
+++ b/src/kudu/integration-tests/update_scan_delta_compact-test.cc
@@ -148,7 +148,7 @@ class UpdateScanDeltaCompactionTest : public KuduTest {
 
   shared_ptr<KuduSession> CreateSession() {
     shared_ptr<KuduSession> session = client_->NewSession();
-    session->SetTimeoutMillis(5000);
+    session->SetTimeoutMillis(30000);
     CHECK_OK(session->SetFlushMode(KuduSession::MANUAL_FLUSH));
     return session;
   }