-
@vlorentz As per tqdm, it's downloading 10k files in ~2.73 seconds. I got 30 files of nearly the same size (I'm calling them chunks) containing ~40M entries each. That's 1.2 billion files to process. So it will take 91 hours (
((40_000_000 * 30) / 10_000) * 2.73 / 60 / 60
) to just download all the files in batches of 100.Do you have any suggestions on how to improve this?
Edited by Kumar Shivendu
Please register or sign in to comment