Comments on: InnoDB DDL: kudos to quick responders on bugs.mysql.com https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com Blog by Shlomi Noach Sat, 20 Oct 2012 12:03:23 +0000 hourly 1 https://wordpress.org/?v=5.3.3 By: shlomi https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com/comment-page-1#comment-125161 Sat, 20 Oct 2012 12:03:23 +0000 https://shlomi-noach.github.io/blog/?p=5696#comment-125161 @Marko,

node1 (sakila) > select version();
+--------------+
| version()    |
+--------------+
| 5.6.7-rc-log |
+--------------+
]]>
By: Marko Mäkelä https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com/comment-page-1#comment-124869 Fri, 19 Oct 2012 19:22:41 +0000 https://shlomi-noach.github.io/blog/?p=5696#comment-124869 Which version have you been testing? Version 5.6.7 and even the upcoming 5.6.8 will contain some bugs in this area. I have been busy fixing them before the GA release. 🙂

The point of online ALTER TABLE is that writes are allowed, even when the operation requires that the table be copied.

]]>
By: shlomi https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com/comment-page-1#comment-124477 Thu, 18 Oct 2012 18:03:40 +0000 https://shlomi-noach.github.io/blog/?p=5696#comment-124477 @Justin,
Thanks for the quick info. That’ I must say, is not nearly as I was expecting.

]]>
By: Justin Swanhart https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com/comment-page-1#comment-124461 Thu, 18 Oct 2012 17:33:55 +0000 https://shlomi-noach.github.io/blog/?p=5696#comment-124461 When the manual says that “some other operations are non-blocking”, I think they mean they don’t block reads, even though they require a table copy.

This should probably be clarified by the docs team.

–Justin

]]>
By: Justin Swanhart https://shlomi-noach.github.io/blog/mysql/innodb-ddl-kudos-to-quick-responders-on-bugs-mysql-com/comment-page-1#comment-124460 Thu, 18 Oct 2012 17:31:33 +0000 https://shlomi-noach.github.io/blog/?p=5696#comment-124460 Bascially only index creation and deletion can be done online without locks.

This includes adding/dropping foreign keys online, but only if you set foreign_key_checks=0.

http://dev.mysql.com/doc/refman/5.6/en/innodb-online-ddl.html

]]>