AWS 极光数据库 max_connection

AWS Aurora DB max_connection

我正在尝试了解它是什么以及如何为 RDS Aurora DB 计算 max_connection。 目前我们正在尝试使用 db.t2.small,根据 AWS 文档,它允许 max_connections = 45

  1. 是45吗p/month?
  2. 有人可以解释一下什么定义了 1 个连接吗?是对数据库的查询吗?
  3. 如果是查询,如果查询 returns 100 个值呢?这些算作连接吗?

谢谢 乔

我不是数据库专家,但我可以尝试从我的理解中回答你的问题。

1)45是p/month?

No, the max_connections is not per month but the number of concurrent
connections allowed simultaneously.

2) 有人可以解释一下什么定义了 1 个连接吗?是对数据库的查询吗?

Connection could either be a query or you trying to manually enter into the
database.

Since for a query to read/write into the database, it needs to open a
connection to the DB, hence it is also counted as one connection, as something
(read here as a piece of code)is connected to your database. It is the same thing
as you opening a client, typing username/password etc and entering into the DB.

3)如果是查询,如果查询returns100个值怎么办?这些算作连接吗?

The value returned by the query doesn't matter. It can return as many values as it 
like(you need to handle that in your code though). What happens in the code is that
you open a connection and then run a query after that you close that connection.
What happens between when the connection open and closes doesn't affect the number
of connection.

However you need to take care of other parameters while running a long query into a
database. As it could spike your CPU/memory utilization etc. but the number of
connection per query would still be 1.