Currently I'm working on a small program that reads large files and sorts them. After some benchmarking I stumbled upon a weird performance issue. When the input file got to large the writing of the output file took longer than the actual sorting. So I went deeper into the code and finally realized that the fputs-function might be the problem. So I wrote this little benchmarking programm.

#include "stdio.h"
#include "ctime"

int main()
{
    int i;
    const int linecount = 50000000;
    //Test Line with 184 byte
    const char* dummyline = "THIS IS A LONG TEST LINE JUST TO SHOW THAT THE WRITER IS GUILTY OF GETTING SLOW AFTER A CERTAIN AMOUNT OF DATA THAT HAS BEEN WRITTEN. hkgjhkdsfjhgk jhksjdhfkjh skdjfhk jshdkfjhksjdhf\r\n";
    clock_t start = clock();
    clock_t last = start;

    FILE* fp1 = fopen("D:\\largeTestFile.txt", "w");
    for(i=0; i<linecount; i++){
        fputs(dummyline, fp1);
        if(i%100000==0){
            printf("%i Lines written.\r", i);
            if(i%1000000 == 0){
                clock_t ms = clock()-last;
                printf("Writting of %i Lines took %i ms\n", i, ms);
                last = clock();
            }
        }
    }
    printf("%i Lines written.\n", i);
    fclose(fp1);
    clock_t ms = clock()-start;
    printf("Writting of %i Lines took %i ms\n", i, ms);

}

When you execute the programm, you can see a clear drop of performance after about 14 to 15 mio lines which is about 2.5GB of data. The writing takes about 3 times as long as before. The threshold of 2GB indicate a 64bit issue, but I haven't found anything about that in the web. I also tested if there is a difference between binary and character-mode (e.g. "wb" and "w"), but there is none. I also tried to preallocate the filesize (to avoid file fragmentation) by seeking to the expected end and writing a zerobyte, but that had also little to no effect.

I'm running a Windows 7 64bit machine but I've tested it on a Windows Server 2008 64bit R1 machine as well. Currently I'm testing on a NTFS filesystem with more than 200GB of free space. My system has 16GB of RAM so that shouldn't be a problem either. The testprogram only uses about 700KB. The page faults, which I suspected earlier, are also very low (~400 page faults during whole runtime).

I know that for such large data the fwrite()-function would suite the task better, but at the moment I'm interested if there is another workaround and why this is happening. Any help would be highly appreciated.

link|improve this question
4  
what file system are you writing to ? and how much memory you got into the box you are running this code from ? – m0ntassar Nov 10 '11 at 8:40
As I added above the file system is NTFS. But I would really be interested if that code has the same issues on other file systems/OS. – Aceonline Nov 10 '11 at 8:58
Did you defragment your disk prior to running the test? Btw: Is there is something like /dev/null on windows? – alk Nov 10 '11 at 9:04
yes, the fragmentation shouldn't be the bottleneck. – Aceonline Nov 10 '11 at 9:06
feedback

1 Answer

up vote 9 down vote accepted

The main reason for all this is a Windows disk cache. Then your program eats all RAM for it, then swapping begins, and thus, slowdowns. To fight these you need to:

1) Open file in commit mode using c flag:

FILE* fp1 = fopen("D:\\largeTestFile.txt", "wc");

2) Periodically write buffer to disk using flush function:

if(i%1000000 == 0)
{
    // write content to disk
    fflush(fp1);

    clock_t ms = clock()-last;
    printf("Writting of %i Lines took %i ms\n", i, ms);
    last = clock();
}

This way you will use reasonable amount of disk cache. Speed will be basically limited by the speed of your hard drive.

link|improve this answer
Sounds reasonable. I also suspected something like that. But I've tried your solution and that makes the performance even worse. Now the performance is the same for the first 14 Mio Lines. – Aceonline Nov 10 '11 at 9:25
Perfomance is not worse, it's limited by the speed of your hard drive. In your original source code, your data was never actually written to a file (so the final last write will take quite some time). Your "first 14 Mio line" speed is also limited by your hard drive since swapping is used. – Petr Abdulin Nov 10 '11 at 9:28
ok, I understand what your saying. But fact is that it took 100 sec before I included the fflush and now it takes 156 sec. – Aceonline Nov 10 '11 at 9:42
So adding more RAM would help as the cache could grow larger? Or is the cache limited to 2GBytes? – alk Nov 10 '11 at 9:52
Now, I can only assume, but I think, thats because Windows writes data from cache to file in background, after you close the file. If you insert fflush(fp1); just before closing file handle, you will get the same time in both cases. Also be sure to turn off any antivirus software. – Petr Abdulin Nov 10 '11 at 10:00
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

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