Local Zip Files Transferred to S3

0

I have a number of local files sitting on a Windows 10 desktop in .Zip format that I am needing uploaded to a S3 bucket. I am comfortable with Python (preferred language) and would be open to learning Node.js or JS for a part of the solution. Guidance on this is appreciated.

已提問 2 年前檢視次數 2107 次
2 個答案
0

The AWS SDK for Python provides a pair of methods to upload a file to an S3 bucket. Here's the Boto3 documentation on using those two methods.

If instead of using python, you want just a quick one liner using the AWS CLI, here's more info on that. As an example, it'd look something like this:

aws s3 cp filename.txt s3://bucket-name

Lastly, don't forget you can just upload directly to S3 via the AWS Console without writing any code. Steps are listed out here.

All three methods still require correct IAM permissions to upload to an S3 bucket, so ensure those exist too! Hope this helps!

AWS
AWSJoe
已回答 2 年前
  • I can't upload the files in .Zip format to the S3 bucket is the catch. They must be transferred in .Zip format, unzipped, then transferred to the S3 bucket.

  • Then the S3-uncompressor @kentrad mentioned would likely be the best option. For large scale data migrations there's also DataSync, but that sounds like it may be overkill. One of the key features is compression during transfer so you could leave the data unzipped and DataSync could still quickly transfer it to S3. That being said an agent is required in the form of a virtual machine that actually migrates the data.

0

You can do this with a Lambda function to unzip the file once it transfers. Here is an example: s3-uncompressor.

profile pictureAWS
專家
kentrad
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南