I am running a web application on AWS EC2 server. Now I need to send some images to the server and store. Can anyone please tell me if there is a size limit to storing files in the EC2 server?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want the storage to survive a restart you’ll have to mount an EBS volume. An EBS volume can be up to 1TB. You can attach up to 20 EBS volumes to an instance, which will give you ~20TB worth of storage.
If you need that much data you might also want to consider S3, which is theoretically unlimited but it requires you to work with the S3 API rather than directly with a filestystem.