Want to upload larger file in s3

0

i need to upload a movie file with size of 151 GB. how can i upload it??? And i tried to enable transfer acceleration i getting error message as You don’t have permission to edit transfer acceleration details After you or your AWS administrator has updated your permissions to allow the s3:PutAccelerateConfiguration action, choose Save changes. Learn more about Identity and access management in Amazon S3. how to resolve it?

asked 8 months ago356 views
4 Answers
0
Accepted Answer

Set the bucket policy to allow multipart uploads. Divide the file into smaller parts that are each less than 5GB in size. Upload each part of the file to the bucket using the aws s3 cp command. Call the aws s3 complete-multipart-upload command to complete the upload.

profile pictureAWS
answered 8 months ago
profile pictureAWS
EXPERT
reviewed 8 months ago
profile pictureAWS
EXPERT
reviewed 8 months ago
  • Hi Dave Thanks for your support

    But i need clear solution because i'm new to aws

0

Hi,

do you know this page: http://s3-accelerate-speedtest.s3-accelerate.amazonaws.com/en/accelerate-speed-comparsion.html

It is a nice way to anticipate what you may gain (or not...) with TA

On your specific issue, go to https://docs.aws.amazon.com/AmazonS3/latest/userguide/transfer-acceleration.html to get details

You must be the bucket owner to set the transfer acceleration state. The bucket owner 
can assign permissions to other users to allow them to set the acceleration state on a bucket. 
The s3:PutAccelerateConfiguration permission permits users to enable or disable Transfer 
Acceleration on a bucket. The s3:GetAccelerateConfiguration permission permits users to return 
the Transfer Acceleration state of a bucket, which is either Enabled or Suspended. For more 
information about these permissions, see Example — Bucket subresource operations and Identity and access management in Amazon S3.

You will also see a list of regions where it is supported

Best,

Didier

profile pictureAWS
EXPERT
answered 8 months ago
0

You currently are using a permission set that does not include s3:PutAccelerateConfiguration. This can be resolved by the person who administrates your permissions by following these steps.

  1. Go to the IAM console.
  2. In the navigation pane, choose Users.
  3. Choose the user that you want to add the permission to.
  4. In the Permissions tab, choose Add permissions.
  5. In the Select permissions dialog, choose Attach existing policies directly.
  6. In the Filter field, enter s3:PutAccelerateConfiguration.
  7. Select the policy that contains the s3:PutAccelerateConfiguration permission.
  8. Click Next: Review.
  9. Review the permissions that you are attaching and click Add permissions.

The permission will now be added to the user's IAM policy.

profile pictureAWS
answered 8 months ago
  • In the Filter field, i entered s3:PutAccelerateConfiguration but no match found

0

Enter image description here

answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions