| .withConcurrencyLevel(2)
.forEachRow(RowCopierFunction.builder(keyspace, CF_STANDARD1_COPY).build())
.build()
.call();
rowCounter.reset();
new AllRowsReader.Builder<String, String>(keyspace, CF_STANDARD1_COPY)
.withPageSize(3)
.withConcurrencyLevel(2)
.forEachRow(rowCounter)
.build()
|