Android app downloads large file successfully when cache is disabled
Any idea why this happens? The android app manages to read the json files, but downloading the larger file (+600Mb) only works on the R2.dev subdomain and not on my productive subdomain.
More info that can be useful:
- Zero trust is not active
- CORS policy is very permissive (see attachment)
Any ideas?
2 Replies
files larger than 512mb arent eligible for cache (unless you have enteprise plan) and have odd behaviour when range requests are made for them, which breaks some systems. you should always disable cache using cache rules for paths of >512mb files to avoid issues
Thank you very much! 🙂