innodb 乐观插入因空间不够导致失败,进入悲观插入阶段,这个空间的大小限制

btr_cur_optimistic_insert{

...

/*检查分裂页时是否有足够的空间预留给未来记录的update*/

if (leaf && !zip_size && dict_index_is_clust(index)

             && page_get_n_recs(page) >= 2

             && dict_index_get_space_reserve()+ rec_size > max_size

             &&(btr_page_get_split_rec_to_right(cursor, &dummy)

                   ||btr_page_get_split_rec_to_left(cursor, &dummy))) {

                   gotofail;

         }

...

}


dict_index_get_space_reserve()+ rec_size > max_size

dict_index_get_space_reserve()=1024,即当1024+记录大小rec_size大于当前page空暇空间max_size时,乐观插入失败,进入悲观插入阶段,发生B+分裂

posted on   slgkaifa  阅读(263)  评论(0编辑  收藏  举报

导航

< 2025年4月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 1 2 3
4 5 6 7 8 9 10
点击右上角即可分享
微信分享提示