AWS MySQL RDS vs AWS DynamoDB(AWS MySQL RDS 与 AWS DynamoDB)
问题描述
我使用 MySQL 已经有一段时间了,我对它的结构感到满意SQL 查询等
I've been using MySQL for a fair while now and I'm comfortable with its structure & SQL Queries etc.
目前正在 AWS 中构建一个新系统,我一直在研究 DynamoDB.目前我只知道一点.
Currently building a new system in AWS and I've been looking at DynamoDB. Currently I only know a little about it.
一个比另一个更好吗?
DynamoDB 有什么优势?
What are the advantage of DynamoDB?
从 MySQL 查询等到这种扁平风格 DB 的过渡是怎样的?
what is the transition like from MySQL queries etc to this flat style DB?
推荐答案
你可以阅读 AWS 的解释 这里.
You can read AWS explanation about it here.
简而言之,如果您主要有 Lookup 查询(而不是 Join 查询),那么 DynamoDB(和其他 NoSQL DB)会更好.如果您需要处理大量数据,则在使用 MySQL(和其他 RDBMS)时会受到限制.
In short, if you have mainly Lookup queries (and not Join queries), DynamoDB (and other NoSQL DB) is better. If you need to handle a lot of data, you will be limited when using MySQL (and other RDBMS).
您不能重用 MySQL 查询或数据模式,但如果您花精力学习 NoSQL,您将在工具箱中添加一个重要工具.在很多情况下,DynamoDB 提供了最简单的解决方案.
You can't reuse your MySQL queries nor your data schema, but if you spend the effort to learn NoSQL, you will add an important tool to your tool box. There are many cases where DynamoDB is giving the simplest solution.
这篇关于AWS MySQL RDS 与 AWS DynamoDB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:AWS MySQL RDS 与 AWS DynamoDB


基础教程推荐
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01