AWS S3 Javascript SDK Resend Request Failure

I am using AWS S3 Javascript sdk to upload files to my S3 bucket through my browser. I had no problems extracting files or downloading small and even huge files with downloading multiple parts.

The problem I ran into was downloading a huge file and losing communication between them. After the connection was returned, the request was resubmitted for the remaining downloadable parts, but failed.

I attached a screenshot of failed requests

enter image description here

Any reason why this fails, or in any way can it be allowed / allowed?

+4
source share
1 answer

, ManagedUpload . . :

var upload = new AWS.S3.ManagedUpload({
  partSize: 10 * 1024 * 1024, queueSize: 1,
  params: {Bucket: 'bucket', Key: 'key', Body: stream}
});

, partSize (Number), 5mb - , .

GitHub : AWS S3 , JavaScript PHP, Amazon S3 , 5 , .

, , , PHP. . , .

+5

All Articles