mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
260 lines
9.1 KiB
C++
260 lines
9.1 KiB
C++
#include <Access/EnabledQuota.h>
|
|
#include <Access/QuotaUsageInfo.h>
|
|
#include <Common/Exception.h>
|
|
#include <Common/quoteString.h>
|
|
#include <ext/chrono_io.h>
|
|
#include <ext/range.h>
|
|
#include <boost/smart_ptr/make_shared.hpp>
|
|
#include <boost/range/algorithm/fill.hpp>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int QUOTA_EXPIRED;
|
|
}
|
|
|
|
struct EnabledQuota::Impl
|
|
{
|
|
[[noreturn]] static void throwQuotaExceed(
|
|
const String & user_name,
|
|
const String & quota_name,
|
|
ResourceType resource_type,
|
|
ResourceAmount used,
|
|
ResourceAmount max,
|
|
std::chrono::seconds duration,
|
|
std::chrono::system_clock::time_point end_of_interval)
|
|
{
|
|
std::function<String(UInt64)> amount_to_string = [](UInt64 amount) { return std::to_string(amount); };
|
|
if (resource_type == Quota::EXECUTION_TIME)
|
|
amount_to_string = [&](UInt64 amount) { return ext::to_string(std::chrono::nanoseconds(amount)); };
|
|
|
|
throw Exception(
|
|
"Quota for user " + backQuote(user_name) + " for " + ext::to_string(duration) + " has been exceeded: "
|
|
+ Quota::getNameOfResourceType(resource_type) + " = " + amount_to_string(used) + "/" + amount_to_string(max) + ". "
|
|
+ "Interval will end at " + ext::to_string(end_of_interval) + ". " + "Name of quota template: " + backQuote(quota_name),
|
|
ErrorCodes::QUOTA_EXPIRED);
|
|
}
|
|
|
|
|
|
static std::chrono::system_clock::time_point getEndOfInterval(
|
|
const Interval & interval, std::chrono::system_clock::time_point current_time, bool * counters_were_reset = nullptr)
|
|
{
|
|
auto & end_of_interval = interval.end_of_interval;
|
|
auto end_loaded = end_of_interval.load();
|
|
auto end = std::chrono::system_clock::time_point{end_loaded};
|
|
if (current_time < end)
|
|
{
|
|
if (counters_were_reset)
|
|
*counters_were_reset = false;
|
|
return end;
|
|
}
|
|
|
|
const auto duration = interval.duration;
|
|
|
|
do
|
|
{
|
|
end = end + (current_time - end + duration) / duration * duration;
|
|
if (end_of_interval.compare_exchange_strong(end_loaded, end.time_since_epoch()))
|
|
{
|
|
boost::range::fill(interval.used, 0);
|
|
break;
|
|
}
|
|
end = std::chrono::system_clock::time_point{end_loaded};
|
|
}
|
|
while (current_time >= end);
|
|
|
|
if (counters_were_reset)
|
|
*counters_were_reset = true;
|
|
return end;
|
|
}
|
|
|
|
|
|
static void used(
|
|
const String & user_name,
|
|
const Intervals & intervals,
|
|
ResourceType resource_type,
|
|
ResourceAmount amount,
|
|
std::chrono::system_clock::time_point current_time,
|
|
bool check_exceeded)
|
|
{
|
|
for (const auto & interval : intervals.intervals)
|
|
{
|
|
ResourceAmount used = (interval.used[resource_type] += amount);
|
|
ResourceAmount max = interval.max[resource_type];
|
|
if (max == Quota::UNLIMITED)
|
|
continue;
|
|
if (used > max)
|
|
{
|
|
bool counters_were_reset = false;
|
|
auto end_of_interval = getEndOfInterval(interval, current_time, &counters_were_reset);
|
|
if (counters_were_reset)
|
|
{
|
|
used = (interval.used[resource_type] += amount);
|
|
if ((used > max) && check_exceeded)
|
|
throwQuotaExceed(user_name, intervals.quota_name, resource_type, used, max, interval.duration, end_of_interval);
|
|
}
|
|
else if (check_exceeded)
|
|
throwQuotaExceed(user_name, intervals.quota_name, resource_type, used, max, interval.duration, end_of_interval);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void checkExceeded(
|
|
const String & user_name,
|
|
const Intervals & intervals,
|
|
ResourceType resource_type,
|
|
std::chrono::system_clock::time_point current_time)
|
|
{
|
|
for (const auto & interval : intervals.intervals)
|
|
{
|
|
ResourceAmount used = interval.used[resource_type];
|
|
ResourceAmount max = interval.max[resource_type];
|
|
if (max == Quota::UNLIMITED)
|
|
continue;
|
|
if (used > max)
|
|
{
|
|
bool used_counters_reset = false;
|
|
std::chrono::system_clock::time_point end_of_interval = getEndOfInterval(interval, current_time, &used_counters_reset);
|
|
if (!used_counters_reset)
|
|
throwQuotaExceed(user_name, intervals.quota_name, resource_type, used, max, interval.duration, end_of_interval);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void checkExceeded(
|
|
const String & user_name,
|
|
const Intervals & intervals,
|
|
std::chrono::system_clock::time_point current_time)
|
|
{
|
|
for (auto resource_type : ext::range_with_static_cast<Quota::ResourceType>(Quota::MAX_RESOURCE_TYPE))
|
|
checkExceeded(user_name, intervals, resource_type, current_time);
|
|
}
|
|
};
|
|
|
|
|
|
EnabledQuota::Interval & EnabledQuota::Interval::operator =(const Interval & src)
|
|
{
|
|
if (this == &src)
|
|
return *this;
|
|
|
|
randomize_interval = src.randomize_interval;
|
|
duration = src.duration;
|
|
end_of_interval.store(src.end_of_interval.load());
|
|
for (auto resource_type : ext::range(MAX_RESOURCE_TYPE))
|
|
{
|
|
max[resource_type] = src.max[resource_type];
|
|
used[resource_type].store(src.used[resource_type].load());
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
|
|
QuotaUsageInfo EnabledQuota::Intervals::getUsageInfo(std::chrono::system_clock::time_point current_time) const
|
|
{
|
|
QuotaUsageInfo info;
|
|
info.quota_id = quota_id;
|
|
info.quota_name = quota_name;
|
|
info.quota_key = quota_key;
|
|
info.intervals.reserve(intervals.size());
|
|
for (const auto & in : intervals)
|
|
{
|
|
info.intervals.push_back({});
|
|
auto & out = info.intervals.back();
|
|
out.duration = in.duration;
|
|
out.randomize_interval = in.randomize_interval;
|
|
out.end_of_interval = Impl::getEndOfInterval(in, current_time);
|
|
for (auto resource_type : ext::range(MAX_RESOURCE_TYPE))
|
|
{
|
|
out.max[resource_type] = in.max[resource_type];
|
|
out.used[resource_type] = in.used[resource_type];
|
|
}
|
|
}
|
|
return info;
|
|
}
|
|
|
|
|
|
EnabledQuota::EnabledQuota(const Params & params_) : params(params_)
|
|
{
|
|
}
|
|
|
|
EnabledQuota::~EnabledQuota() = default;
|
|
|
|
|
|
void EnabledQuota::used(ResourceType resource_type, ResourceAmount amount, bool check_exceeded) const
|
|
{
|
|
used({resource_type, amount}, check_exceeded);
|
|
}
|
|
|
|
|
|
void EnabledQuota::used(const std::pair<ResourceType, ResourceAmount> & resource, bool check_exceeded) const
|
|
{
|
|
auto loaded = intervals.load();
|
|
auto current_time = std::chrono::system_clock::now();
|
|
Impl::used(getUserName(), *loaded, resource.first, resource.second, current_time, check_exceeded);
|
|
}
|
|
|
|
|
|
void EnabledQuota::used(const std::pair<ResourceType, ResourceAmount> & resource1, const std::pair<ResourceType, ResourceAmount> & resource2, bool check_exceeded) const
|
|
{
|
|
auto loaded = intervals.load();
|
|
auto current_time = std::chrono::system_clock::now();
|
|
Impl::used(getUserName(), *loaded, resource1.first, resource1.second, current_time, check_exceeded);
|
|
Impl::used(getUserName(), *loaded, resource2.first, resource2.second, current_time, check_exceeded);
|
|
}
|
|
|
|
|
|
void EnabledQuota::used(const std::pair<ResourceType, ResourceAmount> & resource1, const std::pair<ResourceType, ResourceAmount> & resource2, const std::pair<ResourceType, ResourceAmount> & resource3, bool check_exceeded) const
|
|
{
|
|
auto loaded = intervals.load();
|
|
auto current_time = std::chrono::system_clock::now();
|
|
Impl::used(getUserName(), *loaded, resource1.first, resource1.second, current_time, check_exceeded);
|
|
Impl::used(getUserName(), *loaded, resource2.first, resource2.second, current_time, check_exceeded);
|
|
Impl::used(getUserName(), *loaded, resource3.first, resource3.second, current_time, check_exceeded);
|
|
}
|
|
|
|
|
|
void EnabledQuota::used(const std::vector<std::pair<ResourceType, ResourceAmount>> & resources, bool check_exceeded) const
|
|
{
|
|
auto loaded = intervals.load();
|
|
auto current_time = std::chrono::system_clock::now();
|
|
for (const auto & resource : resources)
|
|
Impl::used(getUserName(), *loaded, resource.first, resource.second, current_time, check_exceeded);
|
|
}
|
|
|
|
|
|
void EnabledQuota::checkExceeded() const
|
|
{
|
|
auto loaded = intervals.load();
|
|
Impl::checkExceeded(getUserName(), *loaded, std::chrono::system_clock::now());
|
|
}
|
|
|
|
|
|
void EnabledQuota::checkExceeded(ResourceType resource_type) const
|
|
{
|
|
auto loaded = intervals.load();
|
|
Impl::checkExceeded(getUserName(), *loaded, resource_type, std::chrono::system_clock::now());
|
|
}
|
|
|
|
|
|
QuotaUsageInfo EnabledQuota::getUsageInfo() const
|
|
{
|
|
auto loaded = intervals.load();
|
|
return loaded->getUsageInfo(std::chrono::system_clock::now());
|
|
}
|
|
|
|
|
|
std::shared_ptr<const EnabledQuota> EnabledQuota::getUnlimitedQuota()
|
|
{
|
|
static const std::shared_ptr<const EnabledQuota> res = []
|
|
{
|
|
auto unlimited_quota = std::shared_ptr<EnabledQuota>(new EnabledQuota);
|
|
unlimited_quota->intervals = boost::make_shared<Intervals>();
|
|
return unlimited_quota;
|
|
}();
|
|
return res;
|
|
}
|
|
|
|
}
|