How would you parse a huge log file

Given a log file with HTTP requests to a server. The log file is very huge 100 TB, you have to filter the requests which has 200 success status. How can we approach this question?

The log file has timestamp, request type and status. You can assume that it will look like the apache server log.

Comments (19)