innodb buffer pool size 设置过小导致的问题

在上一篇文章《The total number of locks exceeds the lock table size 异常处理》中已经提到了在innodb buffer pool size设置较小遇到大事务时导致大事务执行失败。除了文章到提到的异常,还会伴随另外一个waring或者异常。

在同一个实例的错误日志中发现如下信息:

180306  7:48:41  InnoDB: WARNING: over 67 percent of the buffer pool is occupied by

InnoDB: lock heaps or the adaptive hash index! Check that your

InnoDB: transactions do not set too many row locks.

InnoDB: Your buffer pool size is 1191 MB. Maybe you should make

InnoDB: the buffer pool bigger?

InnoDB: Starting the InnoDB Monitor to print diagnostics, including

InnoDB: lock heap and hash index sizes.

超过67%的buffer pool 空间被lock heap或者AHI占用,检查事务是否设置多太多的行锁,buffer pool只有1191M,需要设置buffer pool更大一些。

提示信息说的很明显,lock heap 或者AHI占用了过多的buffer pool空间(也就是说留给各个block list的空间不足),这里提示的是67%,上一篇文章中,free list + lru list < buffer pool / 4 则会使得事务终止。

那说明在这之前错误日志已经已有提示该问题。现在来分析看看这个warning产生的原因:

还提示信息是下面函数产生(mysql 5.5.9,在mysql 5.7中则是buf_LRU_check_size_of_non_data_objects函数):

/******************************************************************//**

Returns a free block from the buf_pool. The block is taken off the

free list. If it is empty, blocks are moved from the end of the

LRU list to the free list. 该函数从free list返回一个free block,如果free list 为空,则从LRU list的尾部移除一个到free list,再返回。

@return the free control block, in state BUF_BLOCK_READY_FOR_USE */

UNIV_INTERN

buf_block_t*

buf_LRU_get_free_block(

/*===================*/

        buf_pool_t*     buf_pool,       /*!< in: buffer pool instance */

        ulint           zip_size)       /*!< in: compressed page size in bytes,

                                        or 0 if uncompressed tablespace */

{

        buf_block_t*    block           = NULL;

        ibool           freed;

        ulint           n_iterations    = 1;

        ibool           mon_value_was   = FALSE;

        ibool           started_monitor = FALSE;

loop:

        buf_pool_mutex_enter(buf_pool);

        if (!recv_recovery_on && UT_LIST_GET_LEN(buf_pool->free)

            + UT_LIST_GET_LEN(buf_pool->LRU) < buf_pool->curr_size / 20) {    当前free list + lru list 小于buffer pool size的5%

                ut_print_timestamp(stderr);

                fprintf(stderr,

                        "  InnoDB: ERROR: over 95 percent of the buffer pool"

                        " is occupied by\n"

                        "InnoDB: lock heaps or the adaptive hash index!"

                        " Check that your\n"

                        "InnoDB: transactions do not set too many row locks.\n"

                        "InnoDB: Your buffer pool size is %lu MB."

                        " Maybe you should make\n"

                        "InnoDB: the buffer pool bigger?\n"

                        "InnoDB: We intentionally generate a seg fault"

                        " to print a stack trace\n"

                        "InnoDB: on Linux!\n",

                        (ulong) (buf_pool->curr_size

                                 / (1024 * 1024 / UNIV_PAGE_SIZE)));

                ut_error;

        } else if (!recv_recovery_on

                   && (UT_LIST_GET_LEN(buf_pool->free)

                       + UT_LIST_GET_LEN(buf_pool->LRU))

< buf_pool->curr_size / 3) {    当前free list + lru list 小于buffer pool size的33%

                if (!buf_lru_switched_on_innodb_mon) {

                        /* Over 67 % of the buffer pool is occupied by lock

                        heaps or the adaptive hash index. This may be a memory

                        leak! */

                        ib::warn() << "Over 67 percent of the buffer pool is"

                                " occupied by lock heaps or the adaptive hash"

                                " index! Check that your transactions do not"

                                " set too many row locks. Your buffer pool"

                                " size is "

                                << (buf_pool->curr_size

                                         / (1024 * 1024 / UNIV_PAGE_SIZE))

                                << " MB. Maybe you should make the buffer pool"

                                " bigger?. Starting the InnoDB Monitor to print"

                                " diagnostics, including lock heap and hash"

                                " index sizes.";

                        buf_lru_switched_on_innodb_mon = true;

                        srv_print_innodb_monitor = TRUE;

                        os_event_set(lock_sys->timeout_event);

                }

。。。

而数据读取,更新,插入都需要free block,则需要调用该函数获取一个free block。为了保持buffer pool中可用的block (free list + lru list)足够多,每次调用都会判断一次当前的buffer pool的使用情况。

从当时show engine innodb status 的输出:

BUFFER POOL AND MEMORY

----------------------

Total memory allocated 1277050880; in additional pool allocated 0

Dictionary memory allocated 482195

Buffer pool size   76159

Free buffers       71

Database pages     25314

Old database pages 9324

Modified db pages  17359

Pending reads 0

Pending writes: LRU 0, flush list 0, single page 0

得到free list 为71,lru list 为25314 ,而buffer size 大小为76159。(71 + 25314)/76159 = 33%因此触发可上述warning。

而当时执行的语句正是上一篇文章中的insert xxx select xxx 语句:

---TRANSACTION 27A7D9, ACTIVE 7986 sec, process no 10782, OS thread id 140449731196672 inserting

mysql tables in use 2, locked 2

9338873 lock struct(s), heap size 831568312, 49139875 row lock(s), undo log entries 18795462

MySQL thread id 16, query id 8912946 Sending data

INSERT  INTO

        T_XXX_TMP(

----------------------

可用看出lock heap size 为831568312 = 800M, 831568312  / 1277050880 = 65.12%。 说明lock heap size就已经占用了总buffer pool大小的65%。还有其他的一些内存使用,超过了67%。

当然这里只是warning,如果事务足够大的话,则有可能触发到95%的的error异常。

从这个调用流程来看,事务执行加锁,消耗了大量的buffer pool ,申请free block读取数据,插入数据也需要申请block,然后检测buffer pool的可用空间,触发warning,紧接着执行插入逻辑,

调用buf_LRU_buf_pool_running_out判断buffer pool的可用空间,触发异常,导致事务中断。因此在申请free block和执行插入操作过程中,都会判断buffer pool可用空间,判断的逻辑都是一样,

两者是先后出现的,解决的方式也是一样。拆小事务或者调大innodb buffer poo size。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容