I'm trying to read 1.6 TB worth of BZIP2 files using FileIO (since TextIO was not able to read them due to some issue regarding splits) but the performance is very bad and it is literally reading at the rate of 5 elements/sec.
TextIO.read() is comparatively much faster but unfortunately I'm unable to use it.
What must I do in this case? Is there any way to increase the performance of FileIO?