Sort a file with huge volume of data given memory constraint

It looks like what you are looking for is external sorting.

Basically, you sort small chunks of data first, write it back to the disk and then iterate over those to sort all.


As other mentionned, you can process in steps.
I would like to explain this with my own words (differs on point 3) :

  1. Read the file sequentially, process N records at a time in memory (N is arbitrary, depending on your memory constraint and the number T of temporary files that you want).

  2. Sort the N records in memory, write them to a temp file. Loop on T until you are done.

  3. Open all the T temp files at the same time, but read only one record per file. (Of course, with buffers). For each of these T records, find the smaller, write it to the final file, and advance only in that file.


Advantages:

  • The memory consumption is as low as you want.
  • You only do the double of disk accesses comparing to a everything-in-memory policy. Not bad! :-)

Exemple with numbers:

  1. Original file with 1 million records.
  2. Choose to have 100 temp files, so read and sort 10 000 records at a time, and drop these in their own temp file.
  3. Open the 100 temp file at a time, read the first record in memory.
  4. Compare the first records, write the smaller and advance this temp file.
  5. Loop on step 5, one million times.

EDITED

You mentionned a multi-threaded application, so I wonder ...

As we seen from these discussions on this need, using less memory gives less performance, with a dramatic factor in this case. So I could also suggest to use only one thread to process only one sort at a time, not as a multi-threaded application.

If you process ten threads, each with a tenth of the memory available, your performance will be miserable, much much less than a tenth of the initial time. If you use only one thread, and queue the 9 other demands and process them in turn, you global performance will be much better, you will finish the ten tasks much faster.


After reading this response : Sort a file with huge volume of data given memory constraint I suggest you consider this distribution sort. It could be huge gain in your context.

The improvement over my proposal is that you don't need to open all the temp files at once, you only open one of them. It saves your day! :-)


You can read the files in smaller parts, sort these and write them to temporrary files. Then you read two of them sequentially again and merge them to a bigger temporary file and so on. If there is only one left you have your file sorted. Basically that's the Megresort algorithm performed on external files. It scales quite well with aribitrary large files but causes some extra file I/O.

Edit: If you have some knowledge about the likely variance of the lines in your files you can employ a more efficient algorithm (distribution sort). Simplified you would read the original file once and write each line to a temporary file that takes only lines with the same first char (or a certain range of first chars). Then you iterate over all the (now small) temporary files in ascending order, sort them in memory and append them directly to the output file. If a temporary file turns out to be too big for sorting in memory, you can reapeat the same process for this based on the 2nd char in the lines and so on. So if your first partitioning was good enough to produce small enough files, you will have only 100% I/O overhead regardless how large the file is, but in the worst case it can become much more than with the performance wise stable merge sort.

Tags:

Java

Sorting

File