-
Notifications
You must be signed in to change notification settings - Fork 26
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
Bandamp rate limiting causing files not to download #30
Comments
Any traction on this? Running into it now as well |
Thanks for the report. Indeed that's an issue. I haven't encountered it yet, but I should run some tests to see if I can reproduce it. If anyone wants to try a fix, PRs are of course welcome − I don't know when I will have time to make the fix :/ |
@Ezwen I always hit it somewhere around 20 downloads, everything after failed with code 429. I just kept running the script until my entire collection synced, and now I doubt I'll ever hit it again as I likely won't buy more than 20 albums at once haha. So it's weird in that it shouldn't happen often... but likely guaranteed to happen immediately on first time use? |
Hello, I have installed the program earlier today, seeing this issue I have set the number of jobs to 1, I'm at download N° 118 without problems so far |
this fixes the problem for me #55 |
Bandcamp appears to have implemented some sort of aggressive rate limiting on their end that causes problems with bandcamp-collection-downloader; after a few releases are downloaded, Bandcamp starts returning 429 Too Many Requests instead of files, and the downloads fail.
The most effective way of combating this may be to implement exponential backoff on 429 errors such that all albums end up downloaded without making Bandcamp too angry; as it is, large portions of your library fail to download because the current retry method is too quick.
The text was updated successfully, but these errors were encountered: