mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
Fixes #3562 Tests: dtest(compaction_test.py) Message-Id: <20180807190324.82014-1-rafie@scylladb.com>
82 lines
2.8 KiB
C++
82 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2018 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 <cstdint>
|
|
#include "schema.hh"
|
|
|
|
namespace sstables {
|
|
class sstable;
|
|
class key;
|
|
}
|
|
|
|
namespace db {
|
|
|
|
class large_partition_handler {
|
|
public:
|
|
struct stats {
|
|
int64_t partitions_bigger_than_threshold = 0; // number of large partition updates exceeding threshold_bytes
|
|
};
|
|
|
|
private:
|
|
uint64_t _threshold_bytes;
|
|
mutable large_partition_handler::stats _stats;
|
|
|
|
public:
|
|
explicit large_partition_handler(uint64_t threshold_bytes = std::numeric_limits<uint64_t>::max()) : _threshold_bytes(threshold_bytes) {}
|
|
virtual ~large_partition_handler() {}
|
|
|
|
future<> maybe_update_large_partitions(const sstables::sstable& sst, const sstables::key& partition_key, uint64_t partition_size) const;
|
|
future<> maybe_delete_large_partitions_entry(const sstables::sstable& sst) const;
|
|
|
|
const large_partition_handler::stats& stats() const { return _stats; }
|
|
|
|
protected:
|
|
virtual future<> update_large_partitions(const schema& s, const sstring& sstable_name, const sstables::key& partition_key, uint64_t partition_size) const = 0;
|
|
virtual future<> delete_large_partitions_entry(const schema& s, const sstring& sstable_name) const = 0;
|
|
};
|
|
|
|
class cql_table_large_partition_handler : public large_partition_handler {
|
|
protected:
|
|
static logging::logger large_partition_logger;
|
|
|
|
public:
|
|
explicit cql_table_large_partition_handler(uint64_t threshold_bytes) : large_partition_handler(threshold_bytes) {}
|
|
|
|
protected:
|
|
virtual future<> update_large_partitions(const schema& s, const sstring& sstable_name, const sstables::key& partition_key, uint64_t partition_size) const override;
|
|
virtual future<> delete_large_partitions_entry(const schema& s, const sstring& sstable_name) const override;
|
|
};
|
|
|
|
class nop_large_partition_handler : public large_partition_handler {
|
|
public:
|
|
virtual future<> update_large_partitions(const schema& s, const sstring& sstable_name, const sstables::key& partition_key, uint64_t partition_size) const override {
|
|
return make_ready_future<>();
|
|
}
|
|
|
|
virtual future<> delete_large_partitions_entry(const schema& s, const sstring& sstable_name) const override {
|
|
return make_ready_future<>();
|
|
}
|
|
};
|
|
|
|
}
|