You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by mp...@apache.org on 2016/09/10 20:06:26 UTC

kudu git commit: KUDU-236 (part 3). Enable tablet history GC by default

Repository: kudu
Updated Branches:
  refs/heads/master 89b54c9f9 -> e2f5e250f


KUDU-236 (part 3). Enable tablet history GC by default

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


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

Branch: refs/heads/master
Commit: e2f5e250f50b983f7ab10dac134246fc46870f32
Parents: 89b54c9
Author: Mike Percy <mp...@apache.org>
Authored: Mon Aug 15 06:42:20 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Sat Sep 10 19:09:08 2016 +0000

----------------------------------------------------------------------
 src/kudu/tablet/tablet.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/e2f5e250/src/kudu/tablet/tablet.cc
----------------------------------------------------------------------
diff --git a/src/kudu/tablet/tablet.cc b/src/kudu/tablet/tablet.cc
index 089ec28..34e1c91 100644
--- a/src/kudu/tablet/tablet.cc
+++ b/src/kudu/tablet/tablet.cc
@@ -108,7 +108,7 @@ DEFINE_double(tablet_throttler_burst_factor, 1.0f,
              "base rate.");
 TAG_FLAG(tablet_throttler_burst_factor, experimental);
 
-DEFINE_int32(tablet_history_max_age_sec, -1,
+DEFINE_int32(tablet_history_max_age_sec, 15 * 60,
              "Number of seconds to retain tablet history. Reads initiated at a "
              "snapshot that is older than this age will be rejected. "
              "To disable history removal, set to -1.");