You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When downloading file contents, Files API initializes streaming buffer size = 1 Mb. This parameter is passed to requests library and then to underlying urllib3 code and controls the amount we're reading from the network stream. This parameter is not easily configurable by the user.
Client should be able to pass this parameter as a standard config option.
Internally, this config option will be the common source of truth for streaming buffer size.
Is it a regression?
No
The text was updated successfully, but these errors were encountered:
Description
When downloading file contents, Files API initializes streaming buffer size = 1 Mb. This parameter is passed to
requests
library and then to underlyingurllib3
code and controls the amount we're reading from the network stream. This parameter is not easily configurable by the user.Reproduction
Expected behavior
Client should be able to pass this parameter as a standard config option.
Internally, this config option will be the common source of truth for streaming buffer size.
Is it a regression?
No
The text was updated successfully, but these errors were encountered: