this post was submitted on 22 Nov 2023
1332 points (98.5% liked)

Programmer Humor

32050 readers
1545 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 10 months ago (2 children)

You are forgetting the time it takes to copy the data to and from these cards. Data may be transported, but it is not usable until you copy it. Copying 20 TiB is probaply going to take some time

[–] [email protected] 10 points 10 months ago (1 children)

Fastest SD card has ~300MB/s read speed and ~250MB/s write speed. Assuming you can write to those cards in parallel, that means you'll need an additional one hour to write the data to the SD cards and another one hour to read them back. So 4 hours in total which halves the data rates to 1.39 GB/s.

That's assuming the card can actually sustain ~250MB/s write speed during the full 1TB copy. It probably can if the card is freshly formatted but I haven't actually tested it myself.

[–] [email protected] 3 points 10 months ago

That's still very fast

[–] [email protected] 6 points 10 months ago

you have the same problem with downloads though. In the end any download rate exceeding your disc write speed doesnt get you there faster.

ofc. you can write as you download, which makes things faster.