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


- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01