aratno commented on code in PR #2804:
URL: https://github.com/apache/cassandra/pull/2804#discussion_r1362783757
##########
src/java/org/apache/cassandra/config/Config.java:
##########
@@ -910,7 +910,11 @@ public static void setClientMode(boolean clientMode)
public volatile Map<StartupCheckType, Map<String, Object>> startup_checks
= new HashMap<>();
public volatile DurationSpec.LongNanosecondsBound repair_state_expires =
new DurationSpec.LongNanosecondsBound("3d");
- public volatile int repair_state_size = 100_000;
+
+ // Only one of repair_state_size and repair_state_heap_size should be set
+ @Deprecated
+ public volatile Integer repair_state_size = null;
+ public volatile DataStorageSpec.IntBytesBound repair_state_heap_size = new
DataStorageSpec.IntBytesBound(5, DataStorageSpec.DataStorageUnit.MEBIBYTES);
Review Comment:
Addressed - thanks.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]