Local access to Amazon S3 Bucket from EC2 instance

前端 未结 1 1468
失恋的感觉
失恋的感觉 2020-12-18 12:15

I have an EC2 instance and an S3 bucket in the same region. The bucket contains reasonably large (5-20mb) files that are used regularly by my EC2 instance.

I want to

相关标签:
1条回答
  • 2020-12-18 13:06

    Whatever you do the object will be downloaded behind the scenes from S3 into your EC2 instance. That cannot be avoided.

    If you want to treat files in the bucket as local files you need to install any one of several S3 filesystem plugins for FUSE (example : s3fs-fuse ). Alternatively you can use boto for easy access to S3 objects via python code.

    0 讨论(0)
提交回复
热议问题