checkpoint: paths and packages cleanup, tri-state filtering on keyspaces, more efficient init, LOCAL_QUORUM

This commit is contained in:
Jonathan Shook
2022-07-19 01:41:23 -05:00
parent e79b09ace7
commit 1d1c96f9bf
66 changed files with 1410 additions and 845 deletions

View File

@@ -487,6 +487,10 @@ public class SimpleActivity implements Activity, ProgressCapable {
for (int i = 0; i < pops.size(); i++) {
long ratio = ratios.get(i);
ParsedOp pop = pops.get(i);
if (ratio==0) {
logger.info("skipped mapping op '" + pop.getName() + "'");
continue;
}
DriverAdapter adapter = adapters.get(i);
OpMapper opMapper = adapter.getOpMapper();
OpDispenser<? extends Op> dispenser = opMapper.apply(pop);