Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
cae21c52
Commit
cae21c52
authored
Feb 14, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix timing on queues, this could clearly lead to starvation.
parent
9c614665
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
storage/innobase/buf/buf0mtflu.cc
storage/innobase/buf/buf0mtflu.cc
+6
-5
storage/xtradb/buf/buf0mtflu.cc
storage/xtradb/buf/buf0mtflu.cc
+6
-5
No files found.
storage/innobase/buf/buf0mtflu.cc
View file @
cae21c52
...
...
@@ -51,6 +51,8 @@ Modified 06/02/2014 Jan Lindström jan.lindstrom@skysql.com
#include "fil0pagecompress.h"
#define MT_COMP_WATER_MARK 50
/** Time to wait for a message. */
#define MT_WAIT_IN_USECS 5000000
/* Work item status */
typedef
enum
wrk_status
{
...
...
@@ -272,10 +274,9 @@ mtflush_service_io(
{
wrk_t
*
work_item
=
NULL
;
ulint
n_flushed
=
0
;
ib_time_t
max_wait_usecs
=
50000
;
mtflush_io
->
wt_status
=
WTHR_SIG_WAITING
;
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wq
,
max_wait_usecs
);
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wq
,
MT_WAIT_IN_USECS
);
if
(
work_item
)
{
mtflush_io
->
wt_status
=
WTHR_RUNNING
;
...
...
@@ -411,7 +412,7 @@ buf_mtflu_io_thread_exit(void)
/* Wait until all work items on a work queue are processed */
while
(
!
ib_wqueue_is_empty
(
mtflush_io
->
wq
))
{
/* Wait */
os_thread_sleep
(
500000
);
os_thread_sleep
(
MT_WAIT_IN_USECS
*
2
);
}
ut_a
(
ib_wqueue_is_empty
(
mtflush_io
->
wq
));
...
...
@@ -420,7 +421,7 @@ buf_mtflu_io_thread_exit(void)
for
(
i
=
0
;
i
<
srv_mtflush_threads
;)
{
wrk_t
*
work_item
;
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wr_cq
,
50000
);
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wr_cq
,
MT_WAIT_IN_USECS
);
/* If we receive reply to work item and it's status is exit,
thead has processed this message and existed */
...
...
@@ -550,7 +551,7 @@ buf_mtflu_flush_work_items(
/* wait on the completion to arrive */
for
(
i
=
0
;
i
<
buf_pool_inst
;)
{
done_wi
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_ctx
->
wr_cq
,
50000
);
done_wi
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_ctx
->
wr_cq
,
MT_WAIT_IN_USECS
);
if
(
done_wi
!=
NULL
)
{
if
(
done_wi
->
n_flushed
==
0
)
{
...
...
storage/xtradb/buf/buf0mtflu.cc
View file @
cae21c52
...
...
@@ -51,6 +51,8 @@ Modified 06/02/2014 Jan Lindström jan.lindstrom@skysql.com
#include "fil0pagecompress.h"
#define MT_COMP_WATER_MARK 50
/** Time to wait for a message. */
#define MT_WAIT_IN_USECS 5000000
/* Work item status */
typedef
enum
wrk_status
{
...
...
@@ -278,10 +280,9 @@ mtflush_service_io(
{
wrk_t
*
work_item
=
NULL
;
ulint
n_flushed
=
0
;
ib_time_t
max_wait_usecs
=
50000
;
mtflush_io
->
wt_status
=
WTHR_SIG_WAITING
;
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wq
,
max_wait_usecs
);
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wq
,
MT_WAIT_IN_USECS
);
if
(
work_item
)
{
mtflush_io
->
wt_status
=
WTHR_RUNNING
;
...
...
@@ -417,7 +418,7 @@ buf_mtflu_io_thread_exit(void)
/* Wait until all work items on a work queue are processed */
while
(
!
ib_wqueue_is_empty
(
mtflush_io
->
wq
))
{
/* Wait */
os_thread_sleep
(
500000
);
os_thread_sleep
(
MT_WAIT_IN_USECS
*
2
);
}
ut_a
(
ib_wqueue_is_empty
(
mtflush_io
->
wq
));
...
...
@@ -426,7 +427,7 @@ buf_mtflu_io_thread_exit(void)
for
(
i
=
0
;
i
<
srv_mtflush_threads
;)
{
wrk_t
*
work_item
;
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wr_cq
,
50000
);
work_item
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_io
->
wr_cq
,
MT_WAIT_IN_USECS
);
/* If we receive reply to work item and it's status is exit,
thead has processed this message and existed */
...
...
@@ -556,7 +557,7 @@ buf_mtflu_flush_work_items(
/* wait on the completion to arrive */
for
(
i
=
0
;
i
<
buf_pool_inst
;)
{
done_wi
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_ctx
->
wr_cq
,
50000
);
done_wi
=
(
wrk_t
*
)
ib_wqueue_timedwait
(
mtflush_ctx
->
wr_cq
,
MT_WAIT_IN_USECS
);
if
(
done_wi
!=
NULL
)
{
if
(
done_wi
->
n_flushed
==
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment