Where should i store image files in AWS that will be access rarely by url
My app requires sharing of images in Facebook through sharer api. For that i need to provide url of the image. Each image will be access once throughout the lifetime. Which storage block should be used.
If number of images are less then serve them as static files hosted in a server like nodejs on Aws ec2 t2.micro (free tier for 1 year) or t2.small instance. If images are more then I'd suggest to serve them through Aws S3
Shouldn't I generate them dynamically. Because facebook scraper is going to scrape only once. Is this good idea or not? or Should i use s3 or efs (efs is cheap isn't it)
Vishwa Bhat
Technology Enthusiast
If number of images are less then serve them as static files hosted in a server like nodejs on Aws ec2 t2.micro (free tier for 1 year) or t2.small instance. If images are more then I'd suggest to serve them through Aws S3