-
Notifications
You must be signed in to change notification settings - Fork 367
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
Calling HTTPFileSystem.get on large files looks problematic #1766
Comments
If you know for sure it is a file, you can always use Does this sound like something you'd like to fix? |
Thank you, btw i also see a separate problem of the default |
Should be
If you manage to trigger this, do let me know. You can configure aiohttp via the HTTPFileSystem constructor, of course, but large files should download in blocks anyway and not hit the timeout except on problematic connections. |
(also: setting good defaults that work for everyone is hard!) |
The problem is that when
HTTPFileSystem.get is called
, it checks if it is a directory here, but to check that this is a directory, it downloads the whole body of the file here, and then again streams the file.The text was updated successfully, but these errors were encountered: