I have a database table like below:

create table temperature
(id int unsigned not null auto_increment primary key,
temperature double
);

And in my program I got about 20 million temperature to insert into the table. I worke in .Net environment, use Connector/Net connecting to MySql. The code was like below:

List<double> temps = new List<double>();
...
string connStr = "server=localhost;user=name;database=test;port=3306;password=*****;";
MySqlConnection conn = new MySqlConnection(connStr);
try
{
    conn.Open();

    //temps.Count is about 20 million
    for (int i = 0; i < temps.Count; i++)
    {
        string sql1 = "INSERT INTO temperature VALUES (null, "+temps[i]+")";
        MySqlCommand cmd1 = new MySqlCommand(sql1, conn);
        cmd1.ExecuteNonQuery();
    }

}
catch (Exception ex)
{
    Console.WriteLine(ex.ToString());
}
conn.Close();

How can i insert so many lines data as fast as possible? (It can only insert 2000 records every minute in my computer.)

link|improve this question
1  
I'm a bit curious. Why would you insert 20 millions temperatures in a DB ? – Steve B Dec 12 '11 at 13:18
Do you need autoincrement? I have a similar situation (on sql server) and I manage the increment keys client side on the loader. I mange 75.000 rows per second on my current hardware. No SQL, though... – TomTom Dec 12 '11 at 13:18
Also your sql "sucks" ;) can you not submit multiple insert statements in one run? It is a string - can mysql handle hthat? 10 isnerts per round trip is 10% the round trips. THreads add moer to that (multi threaded load). – TomTom Dec 12 '11 at 13:20
@TomTom I strongly believe that multithreaded 'forcing' of data into the server won't help a lot here, since it would generate unnecessary locking at the server. – Daniel Mošmondor Dec 12 '11 at 13:32
Oh, but - most of the time the server does nto do anything here because you ahve round trips from client to server. Send data, wait for data back - in this time another thread could updaet the table. – TomTom Dec 12 '11 at 13:39
feedback

3 Answers

you can use the concept of bulk insert which executes many inserts at the same time minimizing overhead of calling ExecuteNonQuery multiple times.

in MySQL this is called LOAD DATA, check here for details: http://dev.mysql.com/doc/refman/5.5/en/load-data.html

in MS SQL Server this is called bulk insert and it's known as such, that's why I've mentioned it with this name.

link|improve this answer
feedback

General rules :-

  1. use load data infile
  2. disable key during import, enable it back after all data has been import
  3. run the script at the database server itself, connect using socket instead of tcp/ip

Most of the tips are explained at the documentation.

link|improve this answer
general rule #2 won't apply here, since it is autonumber primary key – Daniel Mošmondor Dec 12 '11 at 13:29
feedback

You should do bulk inserts. The ADO.NET way to do it is by using a DataAdapter.

For a MySQL specific solution, use the MySqlBulkLoader.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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