Price difference between DynamoDB and MongoDB for Video on Demand App

0

My developer wants to use MongoDB as a Database for my Video on Demand App. We are startup and trying to save money. My question is: would it be a big difference in price compare to DynamoDB? Does the Database for Video on Demand apps need much resourses? What would you suggest?

2개 답변
0

The main costs for video storage will not be MongoDB or DynamoDB. In a typical AWS VOD workflow, video is encoded and stored in S3 (Pricing: https://aws.amazon.com/s3/pricing/) while only lightweight metadata about the video is stored in a database. When looking up metadata about a video, you typically have a key and DynamoDB excels at key-value lookups. Also, DynamoDB is serverless, so you only pay for what you use. With a MongoDB, you will pay monthly regardless of how much data or traffic it handles and unless using Atlas, you'll have to manage the EC2 instance, patching, etc. which is an operational cost to keep in mind.

AWS provides solution architectures that help jumpstart your VOD project, so you can follow best practices automatically and simply focus on providing new features for your customers. Here's the AWS VOD Solution: https://aws.amazon.com/solutions/implementations/video-on-demand-on-aws/

AWS
Jason_W
답변함 2년 전
0

Hey Jason, thank you very much for such a good reply. One more question would I have: Is there a template for the full backend for aws incl admin panel?

답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠