Files
scylladb/utils/rate_limiter.hh
Kefu Chai 7215d4bfe9 utils: do not include unused headers
these unused includes were identifier by clang-include-cleaner. after
auditing these source files, all of the reports have been confirmed.

please note, because quite a few source files relied on
`utils/to_string.hh` to pull in the specialization of
`fmt::formatter<std::optional<T>>`, after removing
`#include <fmt/std.h>` from `utils/to_string.hh`, we have to
include `fmt/std.h` directly.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
2025-01-14 07:56:39 -05:00

35 lines
675 B
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <seastar/core/timer.hh>
#include <seastar/core/semaphore.hh>
#include "seastarx.hh"
namespace utils {
/**
* 100% naive rate limiter. Consider it a placeholder
* Will let you process X "units" per second, then reset this every s.
* Obviously, accuracy is virtually non-existent and steady rate will fluctuate.
*/
class rate_limiter {
private:
timer<lowres_clock> _timer;
size_t _units_per_s;
semaphore _sem {0};
void on_timer();
public:
rate_limiter(size_t rate);
future<> reserve(size_t u);
};
}