900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > Configuring the Rate of InnoDB Buffer Pool Flushing

Configuring the Rate of InnoDB Buffer Pool Flushing

时间:2018-09-01 10:48:42

相关推荐

Configuring the Rate of InnoDB Buffer Pool Flushing

本文转载自:/doc/refman/5.5/en/innodb-performance-adaptive_flushing.html

Configuring the Rate ofInnoDBBuffer Pool Flushing

InnoDB performs certain tasks in the background, including flushing of dirty pages (those pages that have been changed but are not yet written to the database files) from thebuffer pool, a task performed by the master thread. Currently, InnoDB aggressively flushes buffer pool pages if the percentage of dirty pages in the buffer pool exceedsinnodb_max_dirty_pages_pct.

InnoDB uses an algorithm to estimate the required rate of flushing, based on the speed of redo log generation and the current rate of flushing. The intent is to smooth overall performance by ensuring that buffer flush activity keeps up with the need to keep the buffer pool “clean”. Automatically adjusting the rate of flushing can help to avoid sudden dips in throughput, when excessive buffer pool flushing limits the I/O capacity available for ordinary read and write activity.

InnoDB uses its log files in a circular fashion. Before reusing a portion of a log file, InnoDB flushes to disk all dirty buffer pool pages whose redo entries are contained in that portion of the log file, a process known as asharp checkpoint. If a workload is write-intensive, it generates a lot of redo information, all written to the log file. If all available space in the log files is used up, a sharp checkpoint occurs, causing a temporary reduction in throughput. This situation can happen even thoughinnodb_max_dirty_pages_pctis not reached.

InnoDB uses a heuristic-based algorithm to avoid such a scenario, by measuring the number of dirty pages in the buffer pool and the rate at which redo is being generated. Based on these numbers, InnoDB decides how many dirty pages to flush from the buffer pool each second. This self-adapting algorithm is able to deal with sudden changes in the workload.

Internal benchmarking has also shown that this algorithm not only maintains throughput over time, but can also improve overall throughput significantly.

Because adaptive flushing can significantly affect the I/O pattern of a workload, theinnodb_adaptive_flushingconfiguration parameter lets you turn off this feature. The default value forinnodb_adaptive_flushingisTRUE, enabling the adaptive flushing algorithm. You can set the value of this parameter in the MySQL option file (formy.ini) or change it dynamically with theSET GLOBALcommand, which requires theSUPERprivilege.

For more information about InnoDB I/O performance, see Section8.5.7, “OptimizingInnoDBDisk I/O”.

注:近期参加MySQL运维学习,老师推荐该文章作为学习和技术提高的扩展阅读,先记录到自己的博客中,随后慢慢消化、学习、提高。本文与MySQL数据库 “性能优化”主题有关。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。