You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, I want to download very large files, something like 10 GB. I don't necessarily want to leave a terminal hanging there be responsible for my download. I think the download feature can be improved quite a lot by using background downloads.
All downloads should happen via the running daemon regardless of if called via terminal or API. If there's none, then the initiator should start a daemon in another process, use it, then kill it when it's over.
Downloads should have progress reporting available via API.
The terminal initiating the download should send an API command to the deamon to initiate the download then report progress via the API
The daemon should be able to pause and resume downloads
This would make the daemon responsible for all downloads and have better integration with supporting tools such as IPFS Desktop.
I don't necessarily want to leave a terminal hanging there be responsible for my download.
To be fair, if you want background download in terminal, you can ipfs refs -r <cid> & disown or run ipfs refs -r inside of tmux or screen. No need for anything new.
All downloads should happen via the running daemon regardless of if called via terminal or API. If there's none, then the initiator should start a daemon in another process, use it, then kill it when it's over.
Downloads should have progress reporting available via API.
[progress reporting]
Fair request. Already tracked in #4028, so I'm closing this as a duplicate.
The daemon should be able to pause and resume downloads
Technically you can do this already by interrupting ipfs getcat or refs.
Blocks that were downloaded up to that point are in local repo, and won't be downloaded again if you make the call again.
Sometimes, I want to download very large files, something like 10 GB. I don't necessarily want to leave a terminal hanging there be responsible for my download. I think the download feature can be improved quite a lot by using background downloads.
This would make the daemon responsible for all downloads and have better integration with supporting tools such as IPFS Desktop.
Related : ipfs/ipfs-desktop#1499
The text was updated successfully, but these errors were encountered: