最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

MySQLsoontostoresystemtablesinInnoDB_MySQL

来源:懂视网 责编:小采 时间:2020-11-09 19:19:27
文档

MySQLsoontostoresystemtablesinInnoDB_MySQL

MySQLsoontostoresystemtablesinInnoDB_MySQL:In the MySQL team, we are changing the system tables currently located in themysqlschema from MyISAM to InnoDB.Looking at this historically:MyISAM was the default storage engine up until MySQL 5.5.In 5.5 almost 4 years ago, the default stor
推荐度:
导读MySQLsoontostoresystemtablesinInnoDB_MySQL:In the MySQL team, we are changing the system tables currently located in themysqlschema from MyISAM to InnoDB.Looking at this historically:MyISAM was the default storage engine up until MySQL 5.5.In 5.5 almost 4 years ago, the default stor

In the MySQL team, we are changing the system tables currently located in themysqlschema from MyISAM to InnoDB.

Looking at this historically:

  • MyISAM was the default storage engine up until MySQL 5.5.
  • In 5.5 almost 4 years ago, the default storage engine changed to InnoDB, however system tables used for features such as storing privileges and timezones remained as MyISAM.
  • Unlike MyISAM, InnoDB is an ACID compliant storage engine, with the behaviour that once a transaction commits, modifications are able to survive power-loss or other failures. This is a solid foundation to build applications on, since developers will need to handle fewer failures. To use an example:

    1. Customer places an order
    2. A confirmation email is sent
    3. Power is lost

    Without durability, (2) could occur with no record of (1) occurring!Durabilityis a great feature. However, we do not currently offer this for the system tables which use MyISAM. To use an example:

    1. A DBA revokes a user's privilege to MySQL (the command returns success)
    2. Power loss occurs
    3. Upon restore, the revoke never applied.

    By switching to InnoDB we are improving the experience of system-related tasks by ensuring durability that ACID provides.

    This change will have the effect that InnoDB will be required for all MySQL installations, and the configuration setting--skip-innodbwill no longer make sense. Users will still be able to use the MyISAM storage engine, and MyISAM-heavy installations can continue to configure the InnoDB buffer pool toas low as 5MB- taking up very little memory.

    This is a great step forward for MySQL, and I am personally very excited to see this change. Many in the MySQL community have been requesting this change for years, and we're happy to now be working on it. If you have any thoughts, please leave a comment, oremail me!

    文档

    MySQLsoontostoresystemtablesinInnoDB_MySQL

    MySQLsoontostoresystemtablesinInnoDB_MySQL:In the MySQL team, we are changing the system tables currently located in themysqlschema from MyISAM to InnoDB.Looking at this historically:MyISAM was the default storage engine up until MySQL 5.5.In 5.5 almost 4 years ago, the default stor
    推荐度:
    标签: ta to mysql
    • 热门焦点

    最新推荐

    猜你喜欢

    热门推荐

    专题
    Top