Problem
- Currently, when attempting to download files above a size threshold, the operation fails with a generic log message: "WARN range-parallel: Content-Range total x > 50,000,000 for https://example.com/smth.zip is too large; falling back to single GET" The app attempts to fetch the entire file in a single GET request, but each request is apparently capped at 50MB and times out before completion. This makes downloading large files impossible.
Proposed Solution
-
Add power-user controls to make large file downloads configurable and reliable:
-
Toggle switch – Enable/disable download size limit enforcement
-
Slider control – Set download fragment/chunk size (range: 256KB up to the maximum limit) Note: Im adding this because going higher than 256kb, will be a bit slower but use less request quota
This would allow users to:
- Bypass arbitrary size restrictions when needed
- Fine-tune chunk sizes to optimize for their conditions
Problem
Proposed Solution
Add power-user controls to make large file downloads configurable and reliable:
Toggle switch – Enable/disable download size limit enforcement
Slider control – Set download fragment/chunk size (range: 256KB up to the maximum limit) Note: Im adding this because going higher than 256kb, will be a bit slower but use less request quota
This would allow users to: