vote up 2 vote down star
1

Using C#, I want to generate 1,000,000 files from DB, each record in separate file. What is the best way to generate this files in minimum time?

Here is my code without threading :

AppDomain.CurrentDomain.ProcessExit += new EventHandler(CurrentDomain_ProcessExit); // to calculate the execution time in case of using threading
    SqlCommand cmd = new SqlCommand(@"select top 1000000 p1+','+p2+','+p3+','+p4 as line from lines  ", con);

    con.Open();
    var rdr = cmd.ExecuteReader();
    int i = 0;
    while (rdr.Read())
    {

        string line = rdr.Getring(0);
        string filename = String.Format("file{0}.txt", ++i);
        File.WriteAllText(filename, line);

    }
    rdr.Close();
    con.Close();
flag
Are you using C# 3.0 ? – AB Kolan Jul 10 at 2:53
He would have to be becuase of the var keyword in his code. – Lucas McCoy Jul 10 at 2:59
Do you really want them all in one directory? – Stephen Denne Jul 10 at 3:26
(1) Windows Explorer can't deal with thousands of files in one directory. NTFS can, though. Prepare to work via the command line, or programmatically. Consider splitting the files to subfolders. (2) If the filenames end up longer than the DOS 8.3, NTFS will create a short name for you. That will slow to a crawl with 100,000's files. Disable short names. (3) If not subfolders, consider naming the files in a way that lets you work on them in groups. e.g. f0000001.txt, instead of f1.txt. discuss.fogcreek.com/joelonsoftware/… – Oren Trutner Jul 10 at 3:34
I use NTFS and i'll not use explorer to view the files all files names will be from 000001.txt to 999999.txt all in single folder – Ammroff Jul 10 at 3:48
show 1 more comment

4 Answers

vote up 3 vote down check

Since your operations are IO bound and not CPU bound, the best way is to have 2 threads, one that reads from DB the records and put it into a queue, the other read from the queue and generate the files.

Alternatively, you can use the CLR thread pool for that, something like

while (rdr.Read())
    {

        string line = rdr.Getring(0);
        ThreadPool.QueueUserWorkItem (new WaitCallback(writeData), line);

    }

and writeData would look like

static void writeData(Object line)
{
            string filename = String.Format("file{0}.txt", ++i);
            File.WriteAllText(filename, line);
}

The disadvantage of using the ThreadPool is you could end up more threads than you want, since your threads will be blocked in IO most of the time, the thread pool will create new threads to service your requests.

You can try the thread pool first and measure the performance, if you are not satisfied, you can try the 2 threads, 1 queue approach; well known as Producer/Consumer problem.

link|flag
Using thread pool generates only 2713 files and exit my application. unexpected behavior. – Ammroff Jul 10 at 5:18
vote up 0 vote down

This might help.

link|flag
this works great if your database is only SQL Server:) I hope the majority of people are using:) – mfawzymkh Jul 10 at 4:18
1  
Although he has not shown the connection string, use of SQLCommand suggests he is using SQL as database. Hence I guess this can be used. – danish Jul 10 at 4:50
Yes , I use SQLserver 2008 , and I can't find a way to generate each record into a single file using SSIS, Can any one help? – Ammroff Jul 10 at 5:13
If I use only the script task in SSIS ,is this equivalent to write a code in c# , or it will be better in performance? – Ammroff Jul 10 at 5:16
vote up 0 vote down

Why not use SSIS package? Isn't it supposed to do these kind of things?

link|flag
Do you have any article about SSIS package to generate files? – Ammroff Jul 10 at 3:41
vote up 0 vote down

You would benefit from having more threads; the best way to figure out the exact number is empirically, but don't limit yourself to one per CPU core the way you might with CPU-bound tasks. The very easiest way is to use a ThreadPool, but a Producer/Consumer queuing system would be more flexible and tunable.

link|flag

Your Answer

Get an OpenID
or

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