How to sort a file which is very huge in size in order of few hundred GB on a machine where memory is very low. Due to this we can not open the file as memory is not sufficient.Any pointers in this regard would be appreciated.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by ‘cannot open the file’, you really mean ‘cannot read/map the entire file into memory’, Google for ‘merge sort’ – it’s useable when the data can only be accessed sequentially.