简体   繁体   English

适用于多租户Web应用程序的AWS存储服务

[英]AWS storage service for multi-tenant web app

哪些服务可方便地为每个租户创建特定数量的存储分配,增加/减少容量以及监视可用和已用容量。

The most flexible storage option on Amazon Web Services is S3 - Simple Storage Service. Amazon Web Services上最灵活的存储选项是S3-简单存储服务。

S3 is an object store storage facility with which you can upload objects of any type. S3是一个对象存储存储工具,您可以使用该工具上载任何类型的对象。 S3 also support multipart uploads for big files. S3还支持大文件的分段上传。

To separate your different tenants data, you could use folders in a bucket and do some application logic to stop different tenants accessing each others files. 要分离不同的租户数据,您可以使用存储桶中的文件夹并执行一些应用程序逻辑来阻止不同的租户访问彼此的文件。

You can use bucket policies to give different IAM users access to different folders, however, it wouldn't make sense to create an IAM user for each of your tenants. 您可以使用存储桶策略为不同的IAM用户提供对不同文件夹的访问权限,但是,为每个租户创建IAM用户没有任何意义。

I encourage you to read the docs: 我鼓励您阅读文档:
http://docs.aws.amazon.com/AmazonS3/latest/dev/Welcome.html http://docs.aws.amazon.com/AmazonS3/latest/dev/Welcome.html

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM