dcapwell commented on code in PR #3293:
URL: https://github.com/apache/cassandra/pull/3293#discussion_r1594309985
##########
src/java/org/apache/cassandra/config/AccordSpec.java:
##########
@@ -71,4 +73,62 @@ public enum TransactionalRangeMigration
public TransactionalMode default_transactional_mode =
TransactionalMode.off;
public boolean ephemeralReadEnabled = false;
public boolean state_cache_listener_jfr_enabled = true;
+ public final JournalSpec journal = new JournalSpec();
+
+ public static class JournalSpec implements Params
+ {
+ public int segmentSize = 32 << 20;
Review Comment:
we don't actually need to have our variables as `segment_size` as the yaml
layer converts camel case to the expected naming... this is *only*
`segment_size` in yaml, same for every field
--
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]