Managed Connection Pooling overview

This page describes what Managed Connection Pooling is and how to use it with your Cloud SQL instances.

Managed Connection Pooling lets you scale your workloads by optimizing resource utilization and connection latency for your Cloud SQL for PostgreSQL instances using pooling. Managed Connection Pooling dynamically assigns server connections to incoming requests when possible. This delivers significant performance improvements, especially for scaled connections, by absorbing sudden connection spikes and reusing existing database connections. Instead of connecting to a particular database, Managed Connection Pooling connects to a cluster of poolers, which provide shorter connection times and scalability for your workloads. The number of poolers used is based on the number of vCPU cores of your instance.

While you can use Managed Connection Pooling for any transactional workloads, Managed Connection Pooling provides the most throughput and latency benefit with applications that contain short-lived connections, or applications that result in a connection surge.

For long-lived connections, the connection performance using Managed Connection Pooling can be slightly lower than when using a direct connection. In this case, Managed Connection Pooling provides connection scaling when the number of connections is very high. However, for applications that typically establish long-lived connections, you might use direct connections to your instance instead.

For more information on how to enable Managed Connection Pooling, see Configure Managed Connection Pooling.

Requirements

To use Managed Connection Pooling, your instance must meet the following requirements:

  • Your instance must be a Cloud SQL Enterprise Plus edition instance.
  • You must be connected to your instance using a direct connection, or the Cloud SQL Auth Proxy only.
  • You must be connected to your instance using a valid username and password. IAM and IAM group users aren't supported when using Managed Connection Pooling.
  • Your instance must either be set up for private service access, use public IP, or be a new instance with Private Service Connect enabled.
  • Your instance must use the new Cloud SQL network architecture.
  • Managed Connection Pooling requires a minimum maintenance version number of POSTGRES_$version.R20250302.00_04. For more information, see Self-service maintenance.

Available configuration options

Managed Connection Pooling offers the following pooling options that you can set using the POOL_MODE parameter:

  • TRANSACTION (default): pools connections at a transaction level.
  • SESSION: pools connections at a session level.

You can also customize Managed Connection Pooling by using the following configuration parameters:

  • MAX_POOL_SIZE: the maximum size of the connection pool. The default value is 50 connections.
  • MIN_POOL_SIZE: the threshold size of the connection pool. If the number of server connections is less than min_pool_size, then add more server connections to the pool. The default value is 0 connections.
  • MAX_CLIENT_CONNECTIONS: the maximum number of connections allowed for your instance. The default value is 5,000 connections.
  • CLIENT_CONNECTION_IDLE_TIMEOUT: the time that a client-connection remains idle before it times out. This value can range from 0 to 2,147,483 seconds, and the default value is 0 seconds.
  • SERVER_CONNECTION_IDLE_TIMEOUT: the time that a server connection remains idle before it times out. This value can range from 0 to 2,147,483 seconds, and the default value is 600 seconds.
  • QUERY_WAIT_TIMEOUT: the time that a query waits until it times out. This value can range from 0 to 2,147,483 seconds, and the default value is 120 seconds.
  • MAX_PREPARED_STATEMENTS: the maximum number of protocol-level named prepared statements commands supported in transaction pooling mode. The default value is 0.
  • IGNORE_STARTUP_PARAMETERS: the parameters you want ignored, that aren't tracked in Managed Connection Pooling's startup packets by default.
  • SERVER_LIFETIME: the maximum time a server connection is unused before Managed Connection Pooling closes it. The default value is 3600 seconds.

Limitations

Consider the following limitations when using Managed Connection Pooling with your Cloud SQL Enterprise Plus edition instances:

  • Enabling Managed Connection Pooling on an existing instance results in a database restart.
  • When you use the Cloud SQL API to enable, disable, or configure Managed Connection Pooling, the instance.update API can't contain any other instance configuration updates.
  • Managed Connection Pooling can only be used with Cloud SQL Auth Proxy version 2.15.2 and later.
  • If you're using the Cloud SQL Go Language Connector, then we recommend a minimum Go version of 1.24. If you use Go version 1.23 or earlier, then you might experience limitations on performance when using Managed Connection Pooling.
  • If you're using Managed Connection Pooling in TRANSACTION pooling mode, then the following SQL features aren't supported:

    • SET/RESET
    • LISTEN
    • WITH HOLD CURSOR
    • PREPARE/DEALLOCATE
    • PRESERVE/DELETE ROW temp tables
    • LOAD
    • Session-level advisory locks
  • If you're using Cloud SQL for PostgreSQL version 17, then the sslnegotiation=direct option isn't supported.

What's next