Entering edit mode
19 months ago
O.rka
▴
740
How can I speed up the download here? https://ftp.uniprot.org/pub/databases/uniprot/uniref/uniref90/uniref90.fasta.gz
I'm running wget on our compute servers, on the head node, and my personal computer which I know has a fast internet I/O but it's VERY slow taking days to download by the estimates.
How can I speed up this download process?
Does it need to run multi-threaded?
It doesn't run multithreaded. It simply opens multiple download connections (something like
--max-connection-per-server=5
).A few questions:
wget -v -P ${DATABASE_DIRECTORY} https://data.gtdb.ecogenomic.org/releases/release207/207.0/auxillary_files/gtdbtk_r207_v2_data.tar.gz
For someone of your experience in this field, I think it is lazy to keep asking these types of questions. I already answered your original question, and the rest comes down to typing
aria2c -h
and going through the options. Nobody can tell you without testing how many connections any given server will allow.Touché. I'll look into it. Do you usually use
--max-connection-per-server=5
?I typically use 4 or 5.