these unused includes were identified by clangd. see https://clangd.llvm.org/guides/include-cleaner#unused-include-warning for more details on the "Unused include" warning. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#16958
23 lines
635 B
C++
23 lines
635 B
C++
/*
|
|
* Copyright (C) 2020-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/util/noncopyable_function.hh>
|
|
#include "readers/flat_mutation_reader_v2.hh"
|
|
|
|
namespace mutation_writer {
|
|
|
|
// Given a producer that may contain data for all shards, consume it in a per-shard
|
|
// manner. This is useful, for instance, in the resharding process where a user changes
|
|
// the amount of CPU assigned to Scylla and we have to rewrite the SSTables to their new
|
|
// owners.
|
|
future<> segregate_by_shard(flat_mutation_reader_v2 producer, reader_consumer_v2 consumer);
|
|
|
|
} // namespace mutation_writer
|