vote up 0 vote down star

I have a simple table in MySql whose raison-d'être is to store logs. The table has an autoincremented sequence and all the other columns has zero referential integrity to other tables. There are no unique keys or indexes on any columns. The column with autoincrement is the primary key.

Will concurrent INSERTs ever interfere with each other ? I define interference to mean losing data.

I am using autocommit=true for this insert.

flag

Which storage engine will you be using? – David Grant Feb 5 at 8:12
I'm using Innodb – ashitaka Feb 5 at 8:36
So why did you accept my answer? :) – David Grant Feb 5 at 8:50
I figured that if it works for MyISAM, it should work for Innodb :) – ashitaka Feb 6 at 1:27

3 Answers

vote up 2 vote down check

From the MySQL manual for the MyISAM storage engine:

"MyISAM supports concurrent inserts..."
link|flag
+1 Between the two of us , I guess the question is now covered :) – Learning Feb 5 at 8:23
vote up 2 vote down

You'll never lose data just because you do simultaneous inserts. If you use transactions you might "lose" some IDs - but no actual data. (Imagine that you start a transaction, insert a few rows and then do a rollback. InnoDB will have allocated the auto_increment IDs , but there are no rows with those IDs because you did the rollback).

Since you don't need indexes, you should have a look at the ARCHIVE table engine. It's amazingly insanely fast -- and your tables gets much smaller which in turn makes the table scans when you read the table later MUCH faster.

link|flag
I experienced the archive table engine to be much slower than other engines, especially when filtering values, as there are no indexes supported in the engine... – Cassy Feb 5 at 9:34
Cassy - yes, indeed. If you can use indexes effectively then a table type with indexes will be faster. Often you cannot though; and full scans on archive tables are as fast as they can get. You'd then "on demand" table scan the relevant data into a summary table (with indexes) and query that one. – Ask Bjørn Hansen Feb 5 at 20:18
vote up 2 vote down

Yes. For InnoDB , more information here

link|flag
Do you want to merge posts? – David Grant Feb 5 at 8:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.