stefan-egli commented on code in PR #1814:
URL: https://github.com/apache/jackrabbit-oak/pull/1814#discussion_r1808375196
##########
oak-run/src/main/java/org/apache/jackrabbit/oak/run/RevisionsCommand.java:
##########
@@ -146,6 +147,10 @@ private static class RevisionsOptions extends
Utils.NodeStoreOptions {
delay = parser
.accepts("delay", "introduce delays to reduce impact on
system").withRequiredArg()
.ofType(Double.class).defaultsTo(0.0);
+ fullGcDelayFactor = parser
+ .accepts("fullGcDelayFactor", "introduce delays after each
fullGc batch to reduce load " +
+ "on system")
+ .withRequiredArg().ofType(Double.class).defaultsTo(0.0);
Review Comment:
as this will now be a command line parameter, we could use a more
conservative value here. this would protect against unknowingly overloading a
production system.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]