Add startup option --experimental_oom_more_eagerly_threshold, with default value 90. When --experimental_oom_more_eagerly is enabled, if after two full GCs the old gen is still >=--experimental_oom_more_eagerly_threshold% full, exit the JVM.
--
MOS_MIGRATED_REVID=117943361
diff --git a/src/main/cpp/blaze.cc b/src/main/cpp/blaze.cc
index 0fa9b75..ab185c2 100644
--- a/src/main/cpp/blaze.cc
+++ b/src/main/cpp/blaze.cc
@@ -280,7 +280,10 @@
}
if (globals->options.oom_more_eagerly) {
result.push_back("--experimental_oom_more_eagerly");
+ result.push_back("--experimental_oom_more_eagerly_threshold=" +
+ ToString(globals->options.oom_more_eagerly_threshold));
}
+
if (globals->options.watchfs) {
result.push_back("--watchfs");
}