Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.6
Description
Recently changes in introduced by MDEV-24537 accidentally changed the logic such that the flow will not start flushing pages till the number of the dirty-pages > srv_max_buf_pool_modified_pct (default 90%) when ideally is flushing should kick in when the dirty pages > 10%.
if (lsn_limit);
|
**** else if (dirty_pct < srv_max_buf_pool_modified_pct)****
|
goto unemployed;
|
else if (srv_max_dirty_pages_pct_lwm == 0.0 ||
|
dirty_pct < srv_max_dirty_pages_pct_lwm)
|
goto unemployed;
|
Said condition is wrong and should be removed.
Attachments
Issue Links
- is caused by
-
MDEV-24537 innodb_max_dirty_pages_pct_lwm=0 lost its special meaning
- Closed
- relates to
-
MDEV-24278 InnoDB page cleaner keeps waking up on idle server
- Closed
-
MDEV-24369 Page cleaner sleeps indefinitely despite innodb_max_dirty_pages_pct_lwm being exceeded
- Closed