英文:
Does the time taken to access the object from the aws s3 bucket increase if the number of files keeps increasing in the bucket?
问题
我正在处理一个用例,其中我有大约1万个文件存储在AWS S3存储桶中,并且将来会不断增加。我正在使用boto3 SDK来访问这些文件。所以,在这种情况下,访问文件所需的时间会随着时间的推移而增加,还是会保持恒定(不会依赖于S3存储桶中的文件数量)。
英文:
I am working on a use case in which I have around 10k of files in the AWS s3 bucket and in the future it will be keep increasing. I am using boto3 SDK to access the files. So, in this case time taken to access the file will increase with time or it will be constant (it will not depend on the number of files in the S3 bucket.)
答案1
得分: 2
对象的数量对单个对象的检索时间没有影响。
英文:
The number of objects has no impact on retrieval time for individual objects.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论