in reply to how to split huge file reading into multiple threads
Maybe? It depends, if your bottleneck is purely disk i/o, then no, but things like RAID might help. On the other hand, if your bottleneck is in processing the data, you can use one thread to read in records and hand those off to threads that process the data.
|
|---|