forked from scylladb/seastar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfair_queue.cc
452 lines (380 loc) · 15.7 KB
/
fair_queue.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. You may not use this file except in compliance with the License.
*
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*
* Copyright 2019 ScyllaDB
*/
#include <boost/container/small_vector.hpp>
#include <boost/intrusive/parent_from_member.hpp>
#include <seastar/core/fair_queue.hh>
#include <seastar/core/future.hh>
#include <seastar/core/shared_ptr.hh>
#include <seastar/core/circular_buffer.hh>
#include <seastar/util/noncopyable_function.hh>
#include <seastar/core/reactor.hh>
#include <seastar/core/metrics.hh>
#include <queue>
#include <chrono>
#include <unordered_set>
#include "fmt/format.h"
#include "fmt/ostream.h"
namespace seastar {
static_assert(sizeof(fair_queue_ticket) == sizeof(uint64_t), "unexpected fair_queue_ticket size");
static_assert(sizeof(fair_queue_entry) <= 3 * sizeof(void*), "unexpected fair_queue_entry::_hook size");
static_assert(sizeof(fair_queue_entry::container_list_t) == 2 * sizeof(void*), "unexpected priority_class::_queue size");
fair_queue_ticket::fair_queue_ticket(uint32_t weight, uint32_t size) noexcept
: _weight(weight)
, _size(size)
{}
float fair_queue_ticket::normalize(fair_queue_ticket denominator) const noexcept {
return float(_weight) / denominator._weight + float(_size) / denominator._size;
}
fair_queue_ticket fair_queue_ticket::operator+(fair_queue_ticket desc) const noexcept {
return fair_queue_ticket(_weight + desc._weight, _size + desc._size);
}
fair_queue_ticket& fair_queue_ticket::operator+=(fair_queue_ticket desc) noexcept {
_weight += desc._weight;
_size += desc._size;
return *this;
}
fair_queue_ticket fair_queue_ticket::operator-(fair_queue_ticket desc) const noexcept {
return fair_queue_ticket(_weight - desc._weight, _size - desc._size);
}
fair_queue_ticket& fair_queue_ticket::operator-=(fair_queue_ticket desc) noexcept {
_weight -= desc._weight;
_size -= desc._size;
return *this;
}
fair_queue_ticket::operator bool() const noexcept {
return (_weight > 0) || (_size > 0);
}
bool fair_queue_ticket::is_non_zero() const noexcept {
return (_weight > 0) && (_size > 0);
}
bool fair_queue_ticket::operator==(const fair_queue_ticket& o) const noexcept {
return _weight == o._weight && _size == o._size;
}
std::ostream& operator<<(std::ostream& os, fair_queue_ticket t) {
return os << t._weight << ":" << t._size;
}
fair_queue_ticket wrapping_difference(const fair_queue_ticket& a, const fair_queue_ticket& b) noexcept {
return fair_queue_ticket(std::max<int32_t>(a._weight - b._weight, 0),
std::max<int32_t>(a._size - b._size, 0));
}
fair_group::fair_group(config cfg)
: _cost_capacity(cfg.weight_rate / token_bucket_t::rate_cast(std::chrono::seconds(1)).count(), cfg.size_rate / token_bucket_t::rate_cast(std::chrono::seconds(1)).count())
, _token_bucket(cfg.rate_factor * fixed_point_factor,
std::max<capacity_t>(cfg.rate_factor * fixed_point_factor * token_bucket_t::rate_cast(cfg.rate_limit_duration).count(), ticket_capacity(fair_queue_ticket(cfg.limit_min_weight, cfg.limit_min_size))),
ticket_capacity(fair_queue_ticket(cfg.min_weight, cfg.min_size))
)
{
assert(_cost_capacity.is_non_zero());
seastar_logger.info("Created fair group {}, capacity rate {}, limit {}, rate {} (factor {}), threshold {}", cfg.label,
_cost_capacity, _token_bucket.limit(), _token_bucket.rate(), cfg.rate_factor, _token_bucket.threshold());
if (cfg.rate_factor * fixed_point_factor > _token_bucket.max_rate) {
throw std::runtime_error("Fair-group rate_factor is too large");
}
if (ticket_capacity(fair_queue_ticket(cfg.min_weight, cfg.min_size)) > _token_bucket.threshold()) {
throw std::runtime_error("Fair-group replenisher limit is lower than threshold");
}
}
auto fair_group::grab_capacity(capacity_t cap) noexcept -> capacity_t {
assert(cap <= _token_bucket.limit());
return _token_bucket.grab(cap);
}
void fair_group::release_capacity(capacity_t cap) noexcept {
_token_bucket.release(cap);
}
void fair_group::replenish_capacity(clock_type::time_point now) noexcept {
_token_bucket.replenish(now);
}
void fair_group::maybe_replenish_capacity(clock_type::time_point& local_ts) noexcept {
auto now = clock_type::now();
auto extra = _token_bucket.accumulated_in(now - local_ts);
if (extra >= _token_bucket.threshold()) {
local_ts = now;
replenish_capacity(now);
}
}
auto fair_group::capacity_deficiency(capacity_t from) const noexcept -> capacity_t {
return _token_bucket.deficiency(from);
}
auto fair_group::ticket_capacity(fair_queue_ticket t) const noexcept -> capacity_t {
return t.normalize(_cost_capacity) * fixed_point_factor;
}
// Priority class, to be used with a given fair_queue
class fair_queue::priority_class_data {
friend class fair_queue;
uint32_t _shares = 0;
capacity_t _accumulated = 0;
capacity_t _pure_accumulated = 0;
fair_queue_entry::container_list_t _queue;
bool _queued = false;
bool _plugged = true;
public:
explicit priority_class_data(uint32_t shares) noexcept : _shares(std::max(shares, 1u)) {}
priority_class_data(const priority_class_data&) = delete;
priority_class_data(priority_class_data&&) = delete;
void update_shares(uint32_t shares) noexcept {
_shares = (std::max(shares, 1u));
}
};
bool fair_queue::class_compare::operator() (const priority_class_ptr& lhs, const priority_class_ptr & rhs) const noexcept {
return lhs->_accumulated > rhs->_accumulated;
}
fair_queue::fair_queue(fair_group& group, config cfg)
: _config(std::move(cfg))
, _group(group)
, _group_replenish(clock_type::now())
{
}
fair_queue::fair_queue(fair_queue&& other)
: _config(std::move(other._config))
, _group(other._group)
, _group_replenish(std::move(other._group_replenish))
, _resources_executing(std::exchange(other._resources_executing, fair_queue_ticket{}))
, _resources_queued(std::exchange(other._resources_queued, fair_queue_ticket{}))
, _requests_executing(std::exchange(other._requests_executing, 0))
, _requests_queued(std::exchange(other._requests_queued, 0))
, _handles(std::move(other._handles))
, _priority_classes(std::move(other._priority_classes))
, _last_accumulated(other._last_accumulated)
{
}
fair_queue::~fair_queue() {
for (const auto& fq : _priority_classes) {
assert(!fq);
}
}
void fair_queue::push_priority_class(priority_class_data& pc) noexcept {
assert(pc._plugged && !pc._queued);
_handles.assert_enough_capacity();
_handles.push(&pc);
pc._queued = true;
}
void fair_queue::push_priority_class_from_idle(priority_class_data& pc) noexcept {
if (!pc._queued) {
// Don't let the newcomer monopolize the disk for more than tau
// duration. For this estimate how many capacity units can be
// accumulated with the current class shares per rate resulution
// and scale it up to tau.
capacity_t max_deviation = fair_group::fixed_point_factor / pc._shares * fair_group::token_bucket_t::rate_cast(_config.tau).count();
// On start this deviation can go to negative values, so not to
// introduce extra if's for that short corner case, use signed
// arithmetics and make sure the _accumulated value doesn't grow
// over signed maximum (see overflow check below)
pc._accumulated = std::max<signed_capacity_t>(_last_accumulated - max_deviation, pc._accumulated);
_handles.assert_enough_capacity();
_handles.push(&pc);
pc._queued = true;
}
}
void fair_queue::pop_priority_class(priority_class_data& pc) noexcept {
assert(pc._plugged && pc._queued);
pc._queued = false;
_handles.pop();
}
void fair_queue::plug_priority_class(priority_class_data& pc) noexcept {
assert(!pc._plugged && !pc._queued);
pc._plugged = true;
if (!pc._queue.empty()) {
push_priority_class_from_idle(pc);
}
}
void fair_queue::plug_class(class_id cid) noexcept {
plug_priority_class(*_priority_classes[cid]);
}
void fair_queue::unplug_priority_class(priority_class_data& pc) noexcept {
assert(pc._plugged);
if (pc._queued) {
pop_priority_class(pc);
}
pc._plugged = false;
}
void fair_queue::unplug_class(class_id cid) noexcept {
unplug_priority_class(*_priority_classes[cid]);
}
auto fair_queue::grab_pending_capacity(const fair_queue_entry& ent) noexcept -> grab_result {
_group.maybe_replenish_capacity(_group_replenish);
if (_group.capacity_deficiency(_pending->head)) {
return grab_result::pending;
}
capacity_t cap = _group.ticket_capacity(ent._ticket);
if (cap > _pending->cap) {
return grab_result::cant_preempt;
}
if (cap < _pending->cap) {
_group.release_capacity(_pending->cap - cap); // FIXME -- replenish right at once?
}
_pending.reset();
return grab_result::grabbed;
}
auto fair_queue::grab_capacity(const fair_queue_entry& ent) noexcept -> grab_result {
if (_pending) {
return grab_pending_capacity(ent);
}
capacity_t cap = _group.ticket_capacity(ent._ticket);
capacity_t want_head = _group.grab_capacity(cap);
if (_group.capacity_deficiency(want_head)) {
_pending.emplace(want_head, cap);
return grab_result::pending;
}
return grab_result::grabbed;
}
void fair_queue::register_priority_class(class_id id, uint32_t shares) {
if (id >= _priority_classes.size()) {
_priority_classes.resize(id + 1);
} else {
assert(!_priority_classes[id]);
}
_handles.reserve(_nr_classes + 1);
_priority_classes[id] = std::make_unique<priority_class_data>(shares);
_nr_classes++;
}
void fair_queue::unregister_priority_class(class_id id) {
auto& pclass = _priority_classes[id];
assert(pclass && pclass->_queue.empty());
pclass.reset();
_nr_classes--;
}
void fair_queue::update_shares_for_class(class_id id, uint32_t shares) {
assert(id < _priority_classes.size());
auto& pc = _priority_classes[id];
assert(pc);
pc->update_shares(shares);
}
size_t fair_queue::waiters() const {
return _requests_queued;
}
size_t fair_queue::requests_currently_executing() const {
return _requests_executing;
}
fair_queue_ticket fair_queue::resources_currently_waiting() const {
return _resources_queued;
}
fair_queue_ticket fair_queue::resources_currently_executing() const {
return _resources_executing;
}
void fair_queue::queue(class_id id, fair_queue_entry& ent) noexcept {
priority_class_data& pc = *_priority_classes[id];
// We need to return a future in this function on which the caller can wait.
// Since we don't know which queue we will use to execute the next request - if ours or
// someone else's, we need a separate promise at this point.
if (pc._plugged) {
push_priority_class_from_idle(pc);
}
pc._queue.push_back(ent);
_resources_queued += ent._ticket;
_requests_queued++;
}
void fair_queue::notify_request_finished(fair_queue_ticket desc) noexcept {
_resources_executing -= desc;
_requests_executing--;
_group.release_capacity(_group.ticket_capacity(desc));
}
void fair_queue::notify_request_cancelled(fair_queue_entry& ent) noexcept {
_resources_queued -= ent._ticket;
ent._ticket = fair_queue_ticket();
}
fair_queue::clock_type::time_point fair_queue::next_pending_aio() const noexcept {
if (_pending) {
/*
* We expect the disk to release the ticket within some time,
* but it's ... OK if it doesn't -- the pending wait still
* needs the head rover value to be ahead of the needed value.
*
* It may happen that the capacity gets released before we think
* it will, in this case we will wait for the full value again,
* which's sub-optimal. The expectation is that we think disk
* works faster, than it really does.
*/
auto over = _group.capacity_deficiency(_pending->head);
auto ticks = _group.capacity_duration(over);
return std::chrono::steady_clock::now() + std::chrono::duration_cast<std::chrono::microseconds>(ticks);
}
return std::chrono::steady_clock::time_point::max();
}
void fair_queue::dispatch_requests(std::function<void(fair_queue_entry&)> cb) {
capacity_t dispatched = 0;
boost::container::small_vector<priority_class_ptr, 2> preempt;
while (!_handles.empty() && (dispatched < _group.maximum_capacity() / smp::count)) {
priority_class_data& h = *_handles.top();
if (h._queue.empty()) {
pop_priority_class(h);
continue;
}
auto& req = h._queue.front();
auto gr = grab_capacity(req);
if (gr == grab_result::pending) {
break;
}
if (gr == grab_result::cant_preempt) {
pop_priority_class(h);
preempt.emplace_back(&h);
continue;
}
_last_accumulated = std::max(h._accumulated, _last_accumulated);
pop_priority_class(h);
h._queue.pop_front();
_resources_executing += req._ticket;
_resources_queued -= req._ticket;
_requests_executing++;
_requests_queued--;
// Usually the cost of request is tens to hundreeds of thousands. However, for
// unrestricted queue it can be as low as 2k. With large enough shares this
// has chances to be translated into zero cost which, in turn, will make the
// class show no progress and monopolize the queue.
auto req_cap = _group.ticket_capacity(req._ticket);
auto req_cost = std::max(req_cap / h._shares, (capacity_t)1);
// signed overflow check to make push_priority_class_from_idle math work
if (h._accumulated >= std::numeric_limits<signed_capacity_t>::max() - req_cost) {
for (auto& pc : _priority_classes) {
if (pc) {
if (pc->_queued) {
pc->_accumulated -= h._accumulated;
} else { // this includes h
pc->_accumulated = 0;
}
}
}
_last_accumulated = 0;
}
h._accumulated += req_cost;
h._pure_accumulated += req_cap;
dispatched += _group.ticket_capacity(req._ticket);
cb(req);
if (h._plugged && !h._queue.empty()) {
push_priority_class(h);
}
}
for (auto&& h : preempt) {
push_priority_class(*h);
}
}
std::vector<seastar::metrics::impl::metric_definition_impl> fair_queue::metrics(class_id c) {
namespace sm = seastar::metrics;
priority_class_data& pc = *_priority_classes[c];
return std::vector<sm::impl::metric_definition_impl>({
sm::make_counter("consumption",
[&pc] { return fair_group::capacity_tokens(pc._pure_accumulated); },
sm::description("Accumulated disk capacity units consumed by this class; an increment per-second rate indicates full utilization")),
sm::make_counter("adjusted_consumption",
[&pc] { return fair_group::capacity_tokens(pc._accumulated); },
sm::description("Consumed disk capacity units adjusted for class shares and idling preemption")),
});
}
}