I have a large file that takes multiple hours to process. So I am thinking of trying to estimate chunks and read the chunks in parallel.
Is it possible to to concurr
You can process in parallel, however your hard drive can only read one piece of data at a time. If you read in the file with a single thread, you can then process the data with several threads.