mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-03 06:35:51 +00:00
346 lines
14 KiB
C++
346 lines
14 KiB
C++
/*
|
|
* Copyright (C) 2017 ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* This file is part of Scylla.
|
|
*
|
|
* Scylla is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Scylla is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "partition_version.hh"
|
|
#include "flat_mutation_reader.hh"
|
|
|
|
struct partition_snapshot_reader_dummy_accounter {
|
|
void operator()(const clustering_row& cr) {}
|
|
void operator()(const static_row& sr) {}
|
|
void operator()(const range_tombstone& rt) {}
|
|
void operator()(const partition_start& ph) {}
|
|
void operator()(const partition_end& eop) {}
|
|
};
|
|
extern partition_snapshot_reader_dummy_accounter no_accounter;
|
|
|
|
template <typename MemoryAccounter = partition_snapshot_reader_dummy_accounter>
|
|
class partition_snapshot_flat_reader : public flat_mutation_reader::impl, public MemoryAccounter {
|
|
struct rows_position {
|
|
mutation_partition::rows_type::const_iterator _position;
|
|
mutation_partition::rows_type::const_iterator _end;
|
|
};
|
|
|
|
class heap_compare {
|
|
rows_entry::compare _cmp;
|
|
public:
|
|
explicit heap_compare(const schema& s) : _cmp(s) { }
|
|
bool operator()(const rows_position& a, const rows_position& b) {
|
|
return _cmp(*b._position, *a._position);
|
|
}
|
|
};
|
|
|
|
// The part of the reader that accesses LSA memory directly and works
|
|
// with reclamation disabled. The state is either immutable (comparators,
|
|
// snapshot, references to region and alloc section) or dropped on any
|
|
// allocation section retry (_clustering_rows).
|
|
class lsa_partition_reader {
|
|
const schema& _schema;
|
|
rows_entry::compare _cmp;
|
|
position_in_partition::equal_compare _eq;
|
|
heap_compare _heap_cmp;
|
|
|
|
partition_snapshot_ptr _snapshot;
|
|
|
|
logalloc::region& _region;
|
|
logalloc::allocating_section& _read_section;
|
|
|
|
partition_snapshot::change_mark _change_mark;
|
|
std::vector<rows_position> _clustering_rows;
|
|
|
|
bool _digest_requested;
|
|
private:
|
|
template<typename Function>
|
|
decltype(auto) in_alloc_section(Function&& fn) {
|
|
return _read_section.with_reclaiming_disabled(_region, [&] {
|
|
return with_linearized_managed_bytes([&] {
|
|
return fn();
|
|
});
|
|
});
|
|
}
|
|
void refresh_state(const query::clustering_range& ck_range,
|
|
const std::optional<position_in_partition>& last_row,
|
|
range_tombstone_stream& range_tombstones) {
|
|
_clustering_rows.clear();
|
|
|
|
if (!last_row) {
|
|
// New range. Collect all relevant range tombstone.
|
|
for (auto&& v : _snapshot->versions()) {
|
|
range_tombstones.apply(v.partition().row_tombstones(), ck_range, true);
|
|
}
|
|
}
|
|
|
|
for (auto&& v : _snapshot->versions()) {
|
|
auto cr_end = v.partition().upper_bound(_schema, ck_range);
|
|
auto cr = [&] () -> mutation_partition::rows_type::const_iterator {
|
|
if (last_row) {
|
|
return v.partition().clustered_rows().upper_bound(*last_row, _cmp);
|
|
} else {
|
|
return v.partition().lower_bound(_schema, ck_range);
|
|
}
|
|
}();
|
|
|
|
if (cr != cr_end) {
|
|
_clustering_rows.emplace_back(rows_position { cr, cr_end });
|
|
}
|
|
}
|
|
|
|
boost::range::make_heap(_clustering_rows, _heap_cmp);
|
|
}
|
|
// Valid if has_more_rows()
|
|
const rows_entry& pop_clustering_row() {
|
|
boost::range::pop_heap(_clustering_rows, _heap_cmp);
|
|
auto& current = _clustering_rows.back();
|
|
const rows_entry& e = *current._position;
|
|
current._position = std::next(current._position);
|
|
if (current._position == current._end) {
|
|
_clustering_rows.pop_back();
|
|
} else {
|
|
boost::range::push_heap(_clustering_rows, _heap_cmp);
|
|
}
|
|
return e;
|
|
}
|
|
// Valid if has_more_rows()
|
|
const rows_entry& peek_row() const {
|
|
return *_clustering_rows.front()._position;
|
|
}
|
|
bool has_more_rows() const {
|
|
return !_clustering_rows.empty();
|
|
}
|
|
public:
|
|
explicit lsa_partition_reader(const schema& s, partition_snapshot_ptr snp,
|
|
logalloc::region& region, logalloc::allocating_section& read_section,
|
|
bool digest_requested)
|
|
: _schema(s)
|
|
, _cmp(s)
|
|
, _eq(s)
|
|
, _heap_cmp(s)
|
|
, _snapshot(std::move(snp))
|
|
, _region(region)
|
|
, _read_section(read_section)
|
|
, _digest_requested(digest_requested)
|
|
{ }
|
|
|
|
template<typename Function>
|
|
decltype(auto) with_reserve(Function&& fn) {
|
|
return _read_section.with_reserve(std::forward<Function>(fn));
|
|
}
|
|
|
|
tombstone partition_tombstone() {
|
|
logalloc::reclaim_lock guard(_region);
|
|
return _snapshot->partition_tombstone();
|
|
}
|
|
|
|
static_row get_static_row() {
|
|
return in_alloc_section([&] {
|
|
return _snapshot->static_row(_digest_requested);
|
|
});
|
|
}
|
|
|
|
// Returns next clustered row in the range.
|
|
// If the ck_range is the same as the one used previously last_row needs
|
|
// to be engaged and equal the position of the row returned last time.
|
|
// If the ck_range is different or this is the first call to this
|
|
// function last_row has to be disengaged. Additionally, when entering
|
|
// new range range_tombstones will be populated with all relevant
|
|
// tombstones.
|
|
mutation_fragment_opt next_row(const query::clustering_range& ck_range,
|
|
const std::optional<position_in_partition>& last_row,
|
|
range_tombstone_stream& range_tombstones) {
|
|
return in_alloc_section([&] () -> mutation_fragment_opt {
|
|
auto mark = _snapshot->get_change_mark();
|
|
if (!last_row || mark != _change_mark) {
|
|
refresh_state(ck_range, last_row, range_tombstones);
|
|
_change_mark = mark;
|
|
}
|
|
while (has_more_rows()) {
|
|
const rows_entry& e = pop_clustering_row();
|
|
if (e.dummy()) {
|
|
continue;
|
|
}
|
|
if (_digest_requested) {
|
|
e.row().cells().prepare_hash(_schema, column_kind::regular_column);
|
|
}
|
|
auto result = mutation_fragment(mutation_fragment::clustering_row_tag_t(), _schema, e);
|
|
while (has_more_rows() && _eq(peek_row().position(), result.as_clustering_row().position())) {
|
|
const rows_entry& e = pop_clustering_row();
|
|
if (_digest_requested) {
|
|
e.row().cells().prepare_hash(_schema, column_kind::regular_column);
|
|
}
|
|
result.as_mutable_clustering_row().apply(_schema, e);
|
|
}
|
|
return result;
|
|
}
|
|
return { };
|
|
});
|
|
}
|
|
};
|
|
private:
|
|
// Keeps shared pointer to the container we read mutation from to make sure
|
|
// that its lifetime is appropriately extended.
|
|
boost::any _container_guard;
|
|
|
|
query::clustering_key_filter_ranges _ck_ranges;
|
|
query::clustering_row_ranges::const_iterator _current_ck_range;
|
|
query::clustering_row_ranges::const_iterator _ck_range_end;
|
|
|
|
std::optional<position_in_partition> _last_entry;
|
|
mutation_fragment_opt _next_row;
|
|
range_tombstone_stream _range_tombstones;
|
|
|
|
lsa_partition_reader _reader;
|
|
bool _no_more_rows_in_current_range = false;
|
|
|
|
MemoryAccounter& mem_accounter() {
|
|
return *this;
|
|
}
|
|
private:
|
|
void push_static_row() {
|
|
auto sr = _reader.get_static_row();
|
|
if (!sr.empty()) {
|
|
emplace_mutation_fragment(mutation_fragment(std::move(sr)));
|
|
}
|
|
}
|
|
|
|
mutation_fragment_opt read_next() {
|
|
if (!_next_row && !_no_more_rows_in_current_range) {
|
|
_next_row = _reader.next_row(*_current_ck_range, _last_entry, _range_tombstones);
|
|
}
|
|
if (_next_row) {
|
|
auto pos_view = _next_row->as_clustering_row().position();
|
|
auto mf = _range_tombstones.get_next(pos_view);
|
|
if (mf) {
|
|
return mf;
|
|
}
|
|
_last_entry = position_in_partition(pos_view);
|
|
return std::exchange(_next_row, {});
|
|
} else {
|
|
_no_more_rows_in_current_range = true;
|
|
return _range_tombstones.get_next(position_in_partition_view::for_range_end(*_current_ck_range));
|
|
}
|
|
}
|
|
|
|
void emplace_mutation_fragment(mutation_fragment&& mfopt) {
|
|
mfopt.visit(mem_accounter());
|
|
push_mutation_fragment(std::move(mfopt));
|
|
}
|
|
|
|
void on_new_range() {
|
|
if (_current_ck_range == _ck_range_end) {
|
|
_end_of_stream = true;
|
|
push_mutation_fragment(partition_end());
|
|
}
|
|
_no_more_rows_in_current_range = false;
|
|
}
|
|
|
|
void do_fill_buffer(db::timeout_clock::time_point timeout) {
|
|
while (!is_end_of_stream() && !is_buffer_full()) {
|
|
auto mfopt = read_next();
|
|
if (mfopt) {
|
|
emplace_mutation_fragment(std::move(*mfopt));
|
|
} else {
|
|
_last_entry = std::nullopt;
|
|
_current_ck_range = std::next(_current_ck_range);
|
|
on_new_range();
|
|
}
|
|
}
|
|
}
|
|
public:
|
|
template <typename... Args>
|
|
partition_snapshot_flat_reader(schema_ptr s, dht::decorated_key dk, partition_snapshot_ptr snp,
|
|
query::clustering_key_filter_ranges crr, bool digest_requested,
|
|
logalloc::region& region, logalloc::allocating_section& read_section,
|
|
boost::any pointer_to_container, Args&&... args)
|
|
: impl(std::move(s))
|
|
, MemoryAccounter(std::forward<Args>(args)...)
|
|
, _container_guard(std::move(pointer_to_container))
|
|
, _ck_ranges(std::move(crr))
|
|
, _current_ck_range(_ck_ranges.begin())
|
|
, _ck_range_end(_ck_ranges.end())
|
|
, _range_tombstones(*_schema)
|
|
, _reader(*_schema, std::move(snp), region, read_section, digest_requested)
|
|
{
|
|
_reader.with_reserve([&] {
|
|
push_mutation_fragment(partition_start(std::move(dk), _reader.partition_tombstone()));
|
|
push_static_row();
|
|
on_new_range();
|
|
do_fill_buffer(db::no_timeout);
|
|
});
|
|
}
|
|
|
|
virtual future<> fill_buffer(db::timeout_clock::time_point timeout) override {
|
|
_reader.with_reserve([&] {
|
|
do_fill_buffer(timeout);
|
|
});
|
|
return make_ready_future<>();
|
|
}
|
|
virtual void next_partition() override {
|
|
clear_buffer_to_next_partition();
|
|
if (is_buffer_empty()) {
|
|
_end_of_stream = true;
|
|
}
|
|
}
|
|
virtual future<> fast_forward_to(const dht::partition_range& pr, db::timeout_clock::time_point timeout) override {
|
|
throw std::runtime_error("This reader can't be fast forwarded to another partition.");
|
|
};
|
|
virtual future<> fast_forward_to(position_range cr, db::timeout_clock::time_point timeout) override {
|
|
throw std::runtime_error("This reader can't be fast forwarded to another position.");
|
|
};
|
|
};
|
|
|
|
template <typename MemoryAccounter, typename... Args>
|
|
inline flat_mutation_reader
|
|
make_partition_snapshot_flat_reader(schema_ptr s,
|
|
dht::decorated_key dk,
|
|
query::clustering_key_filter_ranges crr,
|
|
partition_snapshot_ptr snp,
|
|
bool digest_requested,
|
|
logalloc::region& region,
|
|
logalloc::allocating_section& read_section,
|
|
boost::any pointer_to_container,
|
|
streamed_mutation::forwarding fwd,
|
|
Args&&... args)
|
|
{
|
|
auto res = make_flat_mutation_reader<partition_snapshot_flat_reader<MemoryAccounter>>(std::move(s), std::move(dk),
|
|
snp, std::move(crr), digest_requested, region, read_section, std::move(pointer_to_container), std::forward<Args>(args)...);
|
|
if (fwd) {
|
|
return make_forwardable(std::move(res)); // FIXME: optimize
|
|
} else {
|
|
return res;
|
|
}
|
|
}
|
|
|
|
inline flat_mutation_reader
|
|
make_partition_snapshot_flat_reader(schema_ptr s,
|
|
dht::decorated_key dk,
|
|
query::clustering_key_filter_ranges crr,
|
|
partition_snapshot_ptr snp,
|
|
bool digest_requested,
|
|
logalloc::region& region,
|
|
logalloc::allocating_section& read_section,
|
|
boost::any pointer_to_container,
|
|
streamed_mutation::forwarding fwd)
|
|
{
|
|
return make_partition_snapshot_flat_reader<partition_snapshot_reader_dummy_accounter>(std::move(s),
|
|
std::move(dk), std::move(crr), std::move(snp), digest_requested, region, read_section, std::move(pointer_to_container), fwd);
|
|
}
|