I've a MySQL InnoDB table with 1,000,000 records. Is this too much? Or databases can handle this and more? I ask because I noticed that some queries (for example, getting the last row from a table) are slower (seconds) in the table with 1 millon rows than in one with 100.
|
No, 1,000,000 rows (AKA records) is not too much for a database.
There's a lot to account for in that statement. The usual suspects are:
|
|||||||||||||||||
|
|
I have a database with more than 97,000,000 records(30GB datafile), and having no problem . Just remember to define and improve your table index. So its obvious that 1,000,000 is not MANY ! (But if you don't index; yes, it is MANY ) |
||||
|
|
Use 'explain' to examine your query and see if there is anything wrong with the query plan. |
|||
|
I've seen non-partitioned tables with several billion (indexed) records, that self-joined for analytical work. We eventually partitioned the thing but honestly we didn't see that much difference. That said, that was in Oracle and I have not tested that volume of data in MySQL. Indexes are your friend :) |
|||
|
|
|
I think this is a common misconception - size is only one part of the equation when it comes to database scalability. There are other issues that are hard (or harder):
So I'm going to state the two limiting issues are going to be:
|
|||
|
|
|
Assuming you mean "records" by "registers" no, it's not too much, MySQL scales really well and can hold as many records as you have space for in your hard disk. Obviously though search queries will be slower. There is really no way around that except making sure that the fields are properly indexed. |
|||||
|
|
If you mean 1 million rows, then it depends on how your indexing is done and the configuration of your hardware. A million rows is not a large amount for an enterprise database, or even a dev database on decent equipment. if you mean 1 million columns (not sure thats even possible in MySQL) then yes, this seems a bit large and will probably cause problems. |
|||
|
|
|
Register? Do you mean record? One million records is not a real big deal for a database these days. If you run into any issue, it's likely not the database system itself, but rather the hardware that you're running it on. You're not going to run into a problem with the DB before you run out of hardware to throw at it, most likely. Now, obviously some queries are slower than others, but if two very similar queries run in vastly different times, you need to figure out what the database's execution plan is and optimize for it, i.e. use correct indexes, proper normalization, etc. Incidentally, there is no such thing as a "last" record in a table, from a logical standpoint they have no inherent order. |
|||||||
|
|
The larger the table gets (as in more rows in it), the slower queries will typically run if there are no indexes. Once you add the right indexes your query performance should improve or at least not degrade as much as the table grows. However, if the query itself returns more rows as the table gets bigger, then you'll start to see degradation again. While 1M rows are not that many, it also depends on how much memory you have on the DB server. If the table is too big to be cached in memory by the server, then queries will be slower. |
|||
|
|
|
Using the query provided will be exceptionally slow because of using a sort merge method to sort the data. I would recommend rethinking the design so you are using indexes to retrieve it or make sure it is already ordered in that manner so no sorting is needed. |
|||
|
|