>데이터 베이스 >MySQL 튜토리얼 >mysql5.6和mysql5.7分配undo回滚段的区别_MySQL

mysql5.6和mysql5.7分配undo回滚段的区别_MySQL

WBOY
WBOY원래의
2016-05-30 17:11:211125검색

1、mysql5.7中分为2类:临时表空间回滚段和普通回滚段。

2、mysql5.6中没有区分。

As of MySQL 5.7.2, 32 undo logs are reserved for use by temporary tables and are hosted in the temporary table tablespace (ibtmp1). To allocate additional undo logs for data-modifying transactions that generate undo records,<code class="literal">innodb_undo_logs must be set to a value greater than 32 if undo logs are stored in the system tablespace only. If you have configured separate undo tablespaces, <code class="literal">innodb_undo_logs must be set to a value greater than 33 to allocate additional undo logs for data-modifying transactions. Each undo log can host up to a maximum of 1024 transactions.

<code class="literal"><code class="literal">如果undo log存储在系统表空间,innodb_undo_logs值必须大于32

<code class="literal"><code class="literal">否则独立存储的话必须大于3。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.