Managing GaussDB(DWS) Database Connections
Scenario
By default, a database supports a certain number of connections. Administrators can manage database connections to learn about the connection performance of the current database or increase the connection limit so that more users or applications can connect to the database at the same time.
Maximum Number of Connections
The number of connections supported by a cluster depends on its node flavor.
Parameter | Description | Number of CN Connections | Number of DN Connections |
---|---|---|---|
max_connections | Specifies the maximum number of concurrent connections to the database. | 800 | Max (Number of vCPU cores/Number of DNs on a single node x 120 + 24, 5000) |
max_pool_size | Specifies the maximum number of connections between the connection pool of a CN and another CN or DN. | ||
max_prepared_transactions | Specifies the maximum number of transactions that can stay in the prepared state simultaneously. |
Viewing the Maximum Number of Connections
Method 1: Post cluster creation, select the cluster name on the GaussDB(DWS) console to access the Parameter Modification page and view the value of max_connections.
Method 2: Use an SQL client tool to establish a database connection within the cluster and execute an SQL query to obtain the value of max_connections.
SHOW max_connections;
Information similar to the following is displayed, showing that the maximum number of database connections is 200 by default.
max_connections-----------------200(1 row)
Viewing the Number of Used Connections
- Use the SQL client tool to connect to the database in a cluster.
- View the number of connections in scenarios described in Table 2.Notice
Except for database and user names that are enclosed with double quotation marks (") during creation, uppercase letters are not allowed in the database and user names in the commands in the following table.
SELECT ROLNAME,ROLCONNLIMIT FROM PG_ROLES WHERE ROLNAME='dbadmin';SELECT COUNT(*) FROM V$SESSION WHERE USERNAME='dbadmin';SELECT DATNAME,DATCONNLIMIT FROM PG_DATABASE WHERE DATNAME='gaussdb';SELECT COUNT(*) FROM PG_STAT_ACTIVITY WHERE DATNAME='gaussdb';SELECT COUNT(*) FROM PG_STAT_ACTIVITY;count-------10(1 row)
- Scenario
- Maximum Number of Connections
- Viewing the Maximum Number of Connections
- Viewing the Number of Used Connections