从EC2到S3的文件迁移



我们目前正在创建一个网站,该网站是对现有旧网站的升级。我们希望在新网站中保留旧的帖子(包括图片(。旧文件保存在ec2实例中,而新网站是无服务器的,并将其所有文件保存在s3中。

我的问题是,有没有任何方法可以使用Python将旧文件(从ec2(传输到新的s3存储桶。我想以我们开发人员决定的新文件名/文件路径模式重命名和重新定位文件。

有boto3,python aws工具包。

https://boto3.amazonaws.com/v1/documentation/api/latest/guide/s3-uploading-files.html

import logging
import boto3
from botocore.exceptions import ClientError

def upload_file(file_name, bucket, object_name=None):
"""Upload a file to an S3 bucket
:param file_name: File to upload
:param bucket: Bucket to upload to
:param object_name: S3 object name. If not specified then file_name is used
:return: True if file was uploaded, else False
"""
# If S3 object_name was not specified, use file_name
if object_name is None:
object_name = file_name
# Upload the file
s3_client = boto3.client('s3')
try:
response = s3_client.upload_file(file_name, bucket, object_name)
except ClientError as e:
logging.error(e)
return False
return True

您可以使用S3 upload_file函数编写脚本,然后在本地ec2上运行。

相关内容

  • 没有找到相关文章

最新更新