private Batch prepareBatch(final String table, final List<DataMatrix> matrices) {
        final List<Query> batchOps = new ArrayList<>();
        matrices.stream().map(matrix -> this.stepDelete(table, matrix)).forEach(batchOps::add);
        return this.context.batch(batchOps);
    }