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
Streaming a big file to s3.upload() can cause the PartNumber parameter to overflow the allowed maximum of 10000, resulting in an InvalidArgument: Part number must be an integer between 1 and 10000 Error.
I managed to work around the problem by using a 10mb partSize, but I think the documentation should be updated to reflect this limitation.
btw, using a partSize of 20mb resulted in another failure:
(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.
[…]
RangeError: Maximum call stack size exceeded
The text was updated successfully, but these errors were encountered:
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread.
lockbot
locked as resolved and limited conversation to collaborators
Sep 29, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Streaming a big file to s3.upload() can cause the PartNumber parameter to overflow the allowed maximum of 10000, resulting in an
InvalidArgument: Part number must be an integer between 1 and 10000
Error.I managed to work around the problem by using a 10mb
partSize
, but I think the documentation should be updated to reflect this limitation.btw, using a partSize of 20mb resulted in another failure:
The text was updated successfully, but these errors were encountered: