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
As of PFIO 2.1 and Python 3, copying from non-local file object to local file may be very slow. This is due to too small buffer size for non-local file object. shutil.COPY_BUFSIZE is 64KB while we often want to copy a large file. By default, non-local file objects in PFIO reads with 16MB buffer size in #247 .
The text was updated successfully, but these errors were encountered:
As of PFIO 2.1 and Python 3, copying from non-local file object to local file may be very slow. This is due to too small buffer size for non-local file object.
shutil.COPY_BUFSIZE
is 64KB while we often want to copy a large file. By default, non-local file objects in PFIO reads with 16MB buffer size in #247 .The text was updated successfully, but these errors were encountered: