Consider an indexed MySQL table with 7 columns, being constantly queried and written to. What is the advisable number of rows that this table should be allowed to contain before the performance would be improved by splitting the data off into other tables?
|
|
|
|
|
|
|
Whether or not you would get a performance gain by partitioning the data depends on the data and the queries you will run on it. You can store many millions of rows in a table and with good indexes and well-designed queries it will still be super-fast. Only consider partitioning if you are already confident that your indexes and queries are as good as they can be, as it can be more trouble than its worth. |
||
|
|
|
There's no magic number, but there's a few things that affect performance in particular:
As you probably know, table performance changes based on the data size. Keep an eye on your table/queries. You'll know when it's time for a change. |
||
|
|
|
|
While after the fact you could point to the table size at which performance became a problem, I don't think you can predict it, and certainly not from the information given on a web site such as this! Some questions you might usefully ask yourself:
|
||
|
|
|
|
Using the MyISAM engine, you'll run into a 2GB hard limit on table size unless you change the default. |
||
|
|
|
|
Don't ever apply an optimisation if you don't think it's needed. Ideally this should be determined by testing (as others have alluded). Horizontal or vertical partitioning can improve performance but also complicate you application. Don't do it unless you're sure that you need it AND it will definitely help. The 2G data MyISAM file size is only a default and can be changed at table creation time (or later by an ALTER, but it needs to rebuild the table). It doesn't apply to other engines (e.g. InnoDB). |
||||
|
|
|
Actually this is a good question for performance. Have you read Jay Pipes? There isn't a specific number of rows but there is a specific page size for reads and there can be good reasons for vertical partitioning. Check out his kung fu presentation and have a look through his posts. I'm sure you'll find that he's written some useful advice on this. |
||
|
|
|
|
Are you using MyISAM? Are you planning to store more than a couple of gigabytes? Watch out for MAX_ROWS and AVG_ROW_LENGTH. Jeremy Zawodny has an excellent write-up on how to solve this problem. |
||
|
|
|
|
MySQL 5 has partitioning built in and is very nice. What's nice is you can define how your table should be split up. For instance, if you query mostly based on a userid you can partition your tables based on userid, or if you're querying by dates do it by date. What's nice about this is that MySQL will know exactly which partition table to search through to find your values. The downside is if you're search on a field that isn't defining your partition its going to scan through each table, which could possibly decrease performance. |
||
|
|
