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 2016/03/05 23:46:03 UTC

incubator-kudu git commit: ts_recovery-itest: enable never_fsync in tablet server

Repository: incubator-kudu
Updated Branches:
  refs/heads/master 48799d3fe -> 0c9262ef5


ts_recovery-itest: enable never_fsync in tablet server

This test is timing out a fair amount on EC2, where there are
slower (remote) disks. Enabling never_fsync should help speed
this test up without losing the intent of the test.

Change-Id: I7e9ad1a95e22b44a314a838e0248bbafda7487c7
Reviewed-on: http://gerrit.cloudera.org:8080/2470
Reviewed-by: Todd Lipcon <to...@apache.org>
Tested-by: Kudu Jenkins


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

Branch: refs/heads/master
Commit: 0c9262ef5a2b8751ed3436e991671ba46a067275
Parents: 48799d3
Author: Todd Lipcon <to...@apache.org>
Authored: Sat Mar 5 14:09:28 2016 -0800
Committer: Todd Lipcon <to...@apache.org>
Committed: Sat Mar 5 22:45:50 2016 +0000

----------------------------------------------------------------------
 src/kudu/integration-tests/ts_recovery-itest.cc | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kudu/blob/0c9262ef/src/kudu/integration-tests/ts_recovery-itest.cc
----------------------------------------------------------------------
diff --git a/src/kudu/integration-tests/ts_recovery-itest.cc b/src/kudu/integration-tests/ts_recovery-itest.cc
index 4ab891f..2eecb19 100644
--- a/src/kudu/integration-tests/ts_recovery-itest.cc
+++ b/src/kudu/integration-tests/ts_recovery-itest.cc
@@ -261,6 +261,8 @@ TEST_P(Kudu969Test, Test) {
   // concurrency bugs where a compaction and a flush might be happening
   // at the same time during the crash.
   opts.extra_tserver_flags.push_back("--maintenance_manager_num_threads=3");
+  // Speed up test by not fsyncing.
+  opts.extra_tserver_flags.push_back("--never_fsync");
   cluster_.reset(new ExternalMiniCluster(opts));
   ASSERT_OK(cluster_->Start());