Comments on: A review of SecoBackup Amazon S3 backups for MySQL http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/ Stay curious! Fri, 10 May 2013 18:25:19 +0000 hourly 1 http://wordpress.org/?v=3.5.1 By: review32 http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/#comment-17061 review32 Fri, 02 Oct 2009 04:07:14 +0000 http://www.xaprb.com/blog/?p=895#comment-17061 UI is half broken. Overall, it’s not ready for shrinkwrapping.

]]>
By: Xaprb http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/#comment-15946 Xaprb Sun, 08 Mar 2009 13:24:15 +0000 http://www.xaprb.com/blog/?p=895#comment-15946 There’s no LOCK TABLES. –opt sets a bunch of flags including –lock-tables, but –single-transaction sets that one off and leaves others on. This is why I looked at the mysql general log to make sure. I would guess the authors of the software don’t know these subtleties.

]]>
By: Dipin http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/#comment-15945 Dipin Sun, 08 Mar 2009 07:08:20 +0000 http://www.xaprb.com/blog/?p=895#comment-15945 @Shlomi – Thanks for the pointer. I had completely missed that little detail. My only question is that although it states in the manual that the two are mutually exclusive, it doesn’t state which one wins out when both are used or which rules are used to determine which one wins out (i.e. the last one specified wins or the single-transaction always wins) and that seems kind of scary to me.

-Dipin

]]>
By: Shlomi Noach http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/#comment-15944 Shlomi Noach Sun, 08 Mar 2009 06:37:22 +0000 http://www.xaprb.com/blog/?p=895#comment-15944 @Dipin -
–lock-tables and –single-transaction are mutually exclusive (that’s also on the docs), and since –single-transaction is second, it should override the –lock-tables.

But this adds to the question of how professional the product is: it’s a bit funny to add these two fields together.
–opt is better used with MyISAM (adds locks, disables keys), while –single-transaction plays well with InnoDB.

A smart backup tool should be able to detect if there is a single engine type throughout the db (disregarding the mysql schema itself) and set the flags accordingly.

Shlomi

]]>
By: Dipin http://www.xaprb.com/blog/2009/03/07/a-review-of-secobackup-amazon-s3-backups-for-mysql/#comment-15943 Dipin Sun, 08 Mar 2009 01:55:00 +0000 http://www.xaprb.com/blog/?p=895#comment-15943 According to the mysql documentation (http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html#option_mysqldump_opt), it seems that the –opt parameter includes a –lock-tables to lock the tables during the dump. So the answer to 4 should be that it uses LOCK TABLES and interrupts processing.

-Dipin

]]>