Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
9c504093
Commit
9c504093
authored
14 years ago
by
Yuriy Vostrikov
Browse files
Options
Downloads
Patches
Plain Diff
[core] refactor io rate limiting
parent
c8c064bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/log_io.c
+11
-12
11 additions, 12 deletions
core/log_io.c
with
11 additions
and
12 deletions
core/log_io.c
+
11
−
12
View file @
9c504093
...
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment