What is stored in ibdata1? 当启用innodb_file_per_table时,表存储在它们自己的表空间中,但共享表空间仍用于存储其他InnoDB的内部数据: 数据字典也就是InnoDB表的元数据 改变缓冲区 双写缓冲区 撤消日志 其中一些可以在Percona Server上配置,以避免变得太大.例如,您可以使用innodb_ibuf_max_size为更改缓冲区设置最大大小,或者使用innodb_doublewrite_file将doublewrit
MySql ibdata1文件太大如何缩小 MySql innodb如果是共享表空间,ibdata1文件越来越大,达到了30多个G,对一些没用的表进行清空:truncate table xxx;然后optimize table xxx; 没有效果因为对共享表空间不起作用.mysql ibdata1存放数据,索引等,是MYSQL的最主要的数据.如果不把数据分开存放的话,这个文件的大小很容易就上了G,甚至几十G.对于某些应用来说,并不是太合适.因此要把此文件缩小.无法自动收缩,必须数据导出,删除ib
We receive this question about the ibdata1 file in MySQL very often in Percona Support. The panic starts when the monitoring server sends an alert about the storage of the MySQL server – saying that the disk is about to get filled. After some researc