I have a python script which appends rows into a mysql table.
But in course of time the insertion is becoming quite slow.
For eg :- When the table was empty there would be like 2000 insertions/sec.
And when table was filled with like 1 million rows, the insertion rate dropped to 100 insertions/sec.
Storage engine is MyISAM.
Also,I am not doing indexing
Does anybody have any idea what i may be doing wrong or is there any configuration setting which needs to be changed.