Description
This is a user-question. In Docker/Moby, we usually user flag max-concurrent-downloads to set the max concurrent downloads for each pull, I think this functionality is quite useful, since data of every image layer needs to be written to the disk, limit concurrent downloads could reduce the stress to disk and network bandwidth which is also important.
like that in docker:
--max-concurrent-downloads int Set the max concurrent downloads for each pull (default 3)
--max-concurrent-uploads int Set the max concurrent uploads for each push (default 5)
I am wondering if we have implemented this in containerd.
Thanks a lot.