I would like to know the expected write performance for the below server configurations.
OS: ubuntu 10.04
Processor: 2 cores each with 2.6 GHz on same die
RAM : 2GB RAM
hard disc: 450GB
Mysql version 5.1.61
innodb_buffer_pool_size = 8MB
innodb_log_buffer_size = 8MB
innodb_log_buffer_size = 1
log-bin : YES
rpm: 7200
I am doing the inserts from the same server with mysql like dump import.
my dump will has individual inserts one after another, no transactions.
table is pretty simple with 5 attributes no indexes apart from the primary key in ID and an empty one.
Current performance is 6 minutes to insert 10K records.
Thanks in advance.
Regards,
UDAY
You might find the following articles of interest. Pay particular attention to:
start transaction and commit/rollback
http://www.mysqlperformanceblog.com/2006/09/29/what-to-tune-in-mysql-server-after-installation/
http://vimeo.com/20990641
http://jpipes.com/presentations/perf_tuning_best_practices.pdf
http://dev.mysql.com/doc/refman/5.0/en/commit.html
A simple example:
Hope this helps 🙂