maedhroz commented on code in PR #3779:
URL: https://github.com/apache/cassandra/pull/3779#discussion_r1941875301
##########
test/distributed/org/apache/cassandra/fuzz/sai/SingleNodeSAITestBase.java:
##########
@@ -193,33 +232,50 @@ private void basicSaiTest(EntropySource rng, SchemaSpec
schema)
if (rng.nextFloat() > 0.9995f)
history.deletePartition(partitionIndex);
- if (i % REPAIR_SKIP == 0)
- history.custom(() -> repair(schema), "Repair");
- else if (i % FLUSH_SKIP == 0)
+ if (i % FLUSH_SKIP == 0)
history.custom(() -> flush(schema), "Flush");
else if (i % COMPACTION_SKIP == 0)
history.custom(() -> compact(schema), "Compact");
+ else if (i % repairSkip == 0)
+ history.custom(() -> repair(schema), "Repair");
- if (i > 0 && i % 1000 == 0)
+ if (i > 0 && i % VALIDATION_SKIP == 0)
{
- for (int j = 0; j < 5; j++)
+ for (int j = 0; j < QUERIES_PER_VALIDATION; j++)
Review Comment:
Number of partitions increased, so wanted to bump this as well.
--
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]