-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mget fails for large files over slow internet #208
Comments
@notmatt repro'd with -v to get the logs:
A few things to point out:
|
I've been really desiring a In the mean time I've been using the following script as a wrapper for mget when downloading large files. This helps alleviate the frustration when transfers get interrupted, but does nothing to help the root cause. #!/bin/bash
MANTA_FILE=$1
LOCAL_FILE=$(basename $1)
[[ -f ${LOCAL_FILE} ]] && R=-H && RANGE="Range: bytes=$(stat -f %z ${LOCAL_FILE})-"
mget $R "${RANGE}" ${MANTA_FILE} >> ${LOCAL_FILE} |
Filed internally as MANTA-2546. |
Fixed in commit 9327891. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Attempting to download a large (2GB) file over slow internet yielded this:
Where 01:45:31 is approximately the time of the original request. This occurs reliably for me, though at varying times after the initial request.
The text was updated successfully, but these errors were encountered: