Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
135 views

Sort 1TB file on machine with 1GB RAM

This questions seems easy, but I am not able to understand the real work behind it. I know people will say, break down into 512 Megs chunks and sort them like using Merge Sort using Map reduce. So ...
2
votes
2answers
334 views

Several ifstream vs. ifstream + constant seeking

I'm writing an external merge sort. It works like that: read k chunks from big file, sort them in memory, perform k-way merge, done. So I need to sequentially read from different portions of the file ...
1
vote
3answers
288 views

Efficient storage of external index of strings

Say you have a large collection with n objects on disk and each one has a variable-sized string. What are common practices of efficient ways to make an index of those objects with plain string ...
1
vote
3answers
734 views

Multiple child process + reading from a stream

referring to my last question (http://stackoverflow.com/questions/876605/multiple-child-process), i am now trying to make an external sorting implementation using multiple child process. ... fp = ...
0
votes
1answer
70 views

How to sort LevelDB by value

I'm using leveldb to store records (key-value), where the key is a 64-bit hash and the value is a double. To make an analogy: think of the 64-bit hash is a unique ID of a customer and the double as an ...
0
votes
2answers
699 views

External Sort Java

Is there a specific reason why Java does not have an in-built external sort algorithm implemented ?
0
votes
1answer
412 views

external sort with k-way merging vs quick sort

Which one is better? Say 1GB memory and 100GB file to sort. One instance of 10-way merging needs: - 100 1GB loads followed by 10*10 + 10*100 100MB loads (for 10-way followed by 10-way merging) ...