Skip to content
Snippets Groups Projects
Commit 9c504093 authored by Yuriy Vostrikov's avatar Yuriy Vostrikov
Browse files

[core] refactor io rate limiting

parent c8c064bd
No related branches found
No related tags found
No related merge requests found
......@@ -1360,25 +1360,24 @@ snapshot_write_row(struct log_io_iter *i, struct tbuf *row)
{
static int rows;
static int bytes;
static struct timeval last;
static ev_tstamp last = 0;
i->to = row;
if (i->io_rate_limit > 0) {
if (last.tv_sec == 0)
gettimeofday(&last, NULL);
bytes += row->len;
ev_now_update();
while (bytes >= i->io_rate_limit) {
struct timeval now;
useconds_t elapsed;
if (last == 0)
last = ev_now();
gettimeofday(&now, NULL);
elapsed = (now.tv_sec - last.tv_sec) * 1000000 + now.tv_usec - last.tv_usec;
bytes += row->len + sizeof(struct row_v11);
if (elapsed < 1000000)
usleep(1000000 - elapsed);
while (bytes >= i->io_rate_limit) {
ev_tstamp elapsed = ev_now() - last;
if (elapsed < 1)
usleep(((1 - elapsed) * 1000000));
gettimeofday(&last, NULL);
ev_now_update();
last = ev_now();
bytes -= i->io_rate_limit;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment