【发布时间】:2018-03-05 20:45:36
【问题描述】:
我的帐户中有 400 多张图片,并且
client = boto3.client('ec2', region)
images = client.describe_images()
工作时间过长,超过 10 分钟。 如何在没有大量数据的情况下一张一张地获取列表图像的 ID?
【问题讨论】:
标签: amazon-ec2 boto3
我的帐户中有 400 多张图片,并且
client = boto3.client('ec2', region)
images = client.describe_images()
工作时间过长,超过 10 分钟。 如何在没有大量数据的情况下一张一张地获取列表图像的 ID?
【问题讨论】:
标签: amazon-ec2 boto3
一种架构模式是在上传对象时将对象的元数据存储在 DynamoDB 等 noSQL 数据库中,然后只需一个查询即可返回有关 S3 对象的所有信息。
Here is an AWS blog post about it
描述过程的图像。
Here is a stackoverflow question, asking the same thing with other considerations.
【讨论】: