Design a System for Sorting Large Data Sets


🙋 Here are some details you should know about this question:

How much data do we need to sort?

What kind of machines do we have at our disposal?

How do you make data reading and writing efficient, because you will be reading and writing data from files.

How can we minimize reads and writes to hard drives, because for small data, sorting is done on RAM, and you can't do that with large data.


← Back to Main Table