Live data from Hacker News

The MySQL MyISAM and InnoDB engines and a grocery checkout

blog.scoutapp.com

11–20 of 21 posts

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#11

Earlier quoted context omitted.

Can you provide some info or a link on this config change. Thanks!

This is handy: http://www.mysqlperformanceblog.com/2007/11/01/innodb-perfor... Lots of good InnoDB-related posts on their site.

Good stuff to know. Thanks.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#12

Earlier quoted context omitted.

I don't agree. MyISAM tables are easy to trash, and the table locking on update can bite you. There's no real disadvantage to using InnoDB other than having to learn to tune it a litte bit, and your data will be much safer.

Define 'easy to trash'. I've been using MyISAM without problems for years now.

The two ways I've experienced:

1. Yank power cord while db writes are happening.

2. Grow the tables over a couple of GB in size.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#13
post #3

I'm still not sure why folks still use MyISAM. I'm sure there may be some edge case where it makes more sense, but in generally InnoDB seems like a better choice (not just regarding row level locking). Or postgres:)

Fulltext indexes are available on MyISAM.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#14
Man this is annoying:

1. The MyISAM/InnoDB debate is so stale it stinks. If you're using MySQL, you should be using InnoDB unless you know exactly why you should use MyISAM. None of these issues are relevant until you have alot of concurrency and uptime/transactions/integrity are radically more important than potentially faster SELECT statements on MyISAM.

2. Did HN really just put this flaccid article to the top of the list? Aren't we more technical than this?

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#15
post #4

Earlier quoted context omitted.

I've yet to find a good comparison of the two. In fact, from what I've seen it seems better to use MyISAM when you don't need support for ACID transactions.

I don't agree. MyISAM tables are easy to trash, and the table locking on update can bite you. There's no real disadvantage to using InnoDB other than having to learn to tune it a litte bit, and your data will be much safer.

The additional storage cost of InnoDB can be quite significant if you have a lot of data. We have about 4 billion rows in MyISAM, we simply wouldn't have space to do that with InnoDB.

Hopefully compressed tables will improve matters.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#17
post #14

Man this is annoying: 1. The MyISAM/InnoDB debate is so stale it stinks. If you're using MySQL, you should be using InnoDB unless you know exactly why you should use MyISAM. None of these issues are relevant until you have alot of concurrency and uptime/transactions/integrity are radically more important than potentially faster SELECT statements on MyISAM. 2. Did HN really just put this flaccid article to the top of…

I'd vote it down if I could, it's far too fluffy and short for my tastes. The only reason I could think of using MyISAM is if you need features that only it supports, like compression, MRG_MyISAM tables, or full text search.

Having said that, the newer InnoDB plugins support compression, with partitioning you don't need MRG_MyISAM, and you can use something like Sphinx for full text searching, which integrates nicely into MySQL.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#18
post #4
post #3

I'm still not sure why folks still use MyISAM. I'm sure there may be some edge case where it makes more sense, but in generally InnoDB seems like a better choice (not just regarding row level locking). Or postgres:)

I've yet to find a good comparison of the two. In fact, from what I've seen it seems better to use MyISAM when you don't need support for ACID transactions.

Googling "myisam vs innodb" gives a lot of pretty informative results, including (http://tag1consulting.com/MySQL_Engines_MyISAM_vs_InnoDB).

The big turn-off for me with MyISAM is that I can run a script to create some tables and setup for FK dependancies, and it will happily run it without errors, but won't enforce the constraints I created. Terrible behavior. I need foreign keys, transactions, row locking, etc...

Of course I now happily use PostgreSQL:)

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#19

Earlier quoted context omitted.

I don't agree. MyISAM tables are easy to trash, and the table locking on update can bite you. There's no real disadvantage to using InnoDB other than having to learn to tune it a litte bit, and your data will be much safer.

Define 'easy to trash'. I've been using MyISAM without problems for years now.

MyISAM is like the ext2 filesystem. You crash and you end up spending a long time doing an fsck, where you have to verify the consistency by walking all the data structures. InnoDB is more like ext3, where you can make things consistent by replaying the changes in the journal. Doing repair on a large MyISAM table can take hours and hours.

Re: The MySQL MyISAM and InnoDB engines and a grocery checkout

#20
post #4
post #3

I'm still not sure why folks still use MyISAM. I'm sure there may be some edge case where it makes more sense, but in generally InnoDB seems like a better choice (not just regarding row level locking). Or postgres:)

I've yet to find a good comparison of the two. In fact, from what I've seen it seems better to use MyISAM when you don't need support for ACID transactions.

That's my experience too. We have a few databases of about 500MB-1000MB each. They are running on MyISAM and don't use transactions, foreign keys, constraints or really any kind of database feature other than indexes.

I spent some time optimising it, not a lot of time, maybe a few hours over the course of a year. And even then mostly due to changing machines. It was quite easy to do, reading the manual page and increasing some buffers and so on. Nothing too complex.

We were running into problems in terms of server capacity. On the advise of a friend and just about every comparison on the Internet (notable exception there is the MySQL manual, BTW), we thought we'd give InnoDB a try. I read up on some of the configuration parameters, set some things to values that seemed sane and did a conversion.

Converting from MyISAM to InnoDB took over one hour for one database of about 800M. The server nearly died from that experiment. (Even though only one/tenth of the databases were switched over to InnoDB. The rest was still on MyISAM.) After a few hours to make sure it wasn't an accident, we switched back to MyISAM.

The most concise summary of the performance difference is probably given by comparing the conversion times. From MyISAM to InnoDB took over one hour (1 hour, 8 minutes, 10.74 seconds to be exact). From InnoDB to MyISAM took 2 minutes and 15.35 seconds.

The results were pretty terrible. Ever since I'm convinced InnoDB does not work well with our environment and application.

Post reply on HN