-
Notifications
You must be signed in to change notification settings - Fork 413
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
Getting "Microsoft Azure Error: Operation timed out" when trying to retrieve big files #2537
Comments
You can increase the timeout by doing this: storage_options={"timeout": "100s"} |
Thank you very much, @ion-elgreco ! It's working now! |
@erickfigueiredo you can see most config keys here: https://docs.rs/object_store/latest/object_store/azure/enum.AzureConfigKey.html |
Hi @ion-elgreco. |
@julio-cmdr You can find those here: https://docs.rs/object_store/latest/object_store/enum.ClientConfigKey.html |
Thanks @ion-elgreco! |
Environment
Delta-rs version: 0.16.0
Environment:
Bug
What happened: I encountered the error
OSError: MicrosoftAzure Generic Error: Error in request or response body: Operation timed out
when attempting to load data containing millions of rows from a Delta Table (using Azure DataLake Gen 2). This error does not occur when I try to retrieve a smaller amount of data.What you expected to happen: I expected to load the data from the Delta table and convert it to a Pandas DataFrame without any errors.
How to reproduce it:
The text was updated successfully, but these errors were encountered: