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 年前檢視次數 286 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南