pub struct Pool<DB: Database>(/* private fields */);
Expand description
An asynchronous pool of SQLx database connections.
Create a pool with Pool::connect or Pool::connect_with and then call Pool::acquire to get a connection from the pool; when the connection is dropped it will return to the pool so it can be reused.
You can also pass &Pool
directly anywhere an Executor
is required; this will automatically
checkout a connection for you.
See the module documentation for examples.
The pool has a maximum connection limit that it will not exceed; if acquire()
is called
when at this limit and all connections are checked out, the task will be made to wait until
a connection becomes available.
You can configure the connection limit, and other parameters, using PoolOptions.
Calls to acquire()
are fair, i.e. fulfilled on a first-come, first-serve basis.
Pool
is Send
, Sync
and Clone
. It is intended to be created once at the start of your
application/daemon/web server/etc. and then shared with all tasks throughout the process’
lifetime. How best to accomplish this depends on your program architecture.
In Actix-Web, for example, you can share a single pool with all request handlers using web::Data.
Cloning Pool
is cheap as it is simply a reference-counted handle to the inner pool state.
When the last remaining handle to the pool is dropped, the connections owned by the pool are
immediately closed (also by dropping). PoolConnection
returned by Pool::acquire and
Transaction
returned by Pool::begin both implicitly hold a reference to the pool for
their lifetimes.
If you prefer to explicitly shutdown the pool and gracefully close its connections (which depending on the database type, may include sending a message to the database server that the connection is being closed), you can call Pool::close which causes all waiting and subsequent calls to Pool::acquire to return Error::PoolClosed, and waits until all connections have been returned to the pool and gracefully closed.
Type aliases are provided for each database to make it easier to sprinkle Pool
through
your codebase:
- [MssqlPool][crate::mssql::MssqlPool] (MSSQL)
- MySqlPool (MySQL)
- [PgPool][crate::postgres::PgPool] (PostgreSQL)
- [SqlitePool][crate::sqlite::SqlitePool] (SQLite)
Why Use a Pool?
A single database connection (in general) cannot be used by multiple threads simultaneously for various reasons, but an application or web server will typically need to execute numerous queries or commands concurrently (think of concurrent requests against a web server; many or all of them will probably need to hit the database).
You could place the connection in a Mutex
but this will make it a huge bottleneck.
Naively, you might also think to just open a new connection per request, but this has a number of other caveats, generally due to the high overhead involved in working with a fresh connection. Examples to follow.
Connection pools facilitate reuse of connections to amortize these costs, helping to ensure that you’re not paying for them each time you need a connection.
1. Overhead of Opening a Connection
Opening a database connection is not exactly a cheap operation.
For SQLite, it means numerous requests to the filesystem and memory allocations, while for server-based databases it involves performing DNS resolution, opening a new TCP connection and allocating buffers.
Each connection involves a nontrivial allocation of resources for the database server, usually including spawning a new thread or process specifically to handle the connection, both for concurrency and isolation of faults.
Additionally, database connections typically involve a complex handshake including authentication, negotiation regarding connection parameters (default character sets, timezones, locales, supported features) and upgrades to encrypted tunnels.
If acquire()
is called on a pool with all connections checked out but it is not yet at its
connection limit (see next section), then a new connection is immediately opened, so this pool
does not automatically save you from the overhead of creating a new connection.
However, because this pool by design enforces reuse of connections, this overhead cost
is not paid each and every time you need a connection. In fact you set the min_connections
option in PoolOptions, the pool will create that many connections up-front so that they are
ready to go when a request comes in.
2. Connection Limits (MySQL, MSSQL, Postgres)
Database servers usually place hard limits on the number of connections that it allows open at any given time, to maintain performance targets and prevent excessive allocation of resources, namely RAM.
These limits have different defaults per database flavor, and may vary between different distributions of the same database, but are typically configurable on server start; if you’re paying for managed database hosting then the connection limit will typically vary with your pricing tier.
In MySQL, the default limit is typically 150, plus 1 which is reserved for a user with the
CONNECTION_ADMIN
privilege so you can still access the server to diagnose problems even
with all connections being used.
In MSSQL the only documentation for the default maximum limit is that it depends on the version and server configuration.
In Postgres, the default limit is typically 100, minus 3 which are reserved for superusers (putting the default limit for unprivileged users at 97 connections).
In any case, exceeding these limits results in an error when opening a new connection, which
in a web server context will turn into a 500 Internal Server Error
if not handled, but should
be turned into either 403 Forbidden
or 429 Too Many Requests
depending on your rate-limiting
scheme. However, in a web context, telling a client “go away, maybe try again later” results in
a sub-optimal user experience.
Instead with a connection pool, clients are made to wait in a fair queue for a connection to become available; by using a single connection pool for your whole application, you can ensure that you don’t exceed the connection limit of your database server while allowing response time to degrade gracefully at high load.
Of course, if multiple applications are connecting to the same database server, then you should ensure that the connection limits for all applications add up to your server’s maximum connections or less.
3. Resource Reuse
The first time you execute a query against your database, the database engine must first turn the SQL into an actionable query plan which it may then execute against the database. This involves parsing the SQL query, validating and analyzing it, and in the case of Postgres 12+ and SQLite, generating code to execute the query plan (native or bytecode, respectively).
These database servers provide a way to amortize this overhead by preparing the query, associating it with an object ID and placing its query plan in a cache to be referenced when it is later executed.
Prepared statements have other features, like bind parameters, which make them safer and more
ergonomic to use as well. By design, SQLx pushes you towards using prepared queries/statements
via the Query API et al. and the query!()
macro et al., for
reasons of safety, ergonomics, and efficiency.
However, because database connections are typically isolated from each other in the database server (either by threads or separate processes entirely), they don’t typically share prepared statements between connections so this work must be redone for each connection.
As with section 1, by facilitating reuse of connections, Pool
helps to ensure their prepared
statements (and thus cached query plans) can be reused as much as possible, thus amortizing
the overhead involved.
Depending on the database server, a connection will have caches for all kinds of other data as well and queries will generally benefit from these caches being “warm” (populated with data).
Implementations§
source§impl<DB: Database> Pool<DB>
impl<DB: Database> Pool<DB>
sourcepub async fn connect(uri: &str) -> Result<Self, Error>
pub async fn connect(uri: &str) -> Result<Self, Error>
Creates a new connection pool with a default pool configuration and the given connection URI; and, immediately establishes one connection.
sourcepub async fn connect_with(
options: <DB::Connection as Connection>::Options
) -> Result<Self, Error>
pub async fn connect_with( options: <DB::Connection as Connection>::Options ) -> Result<Self, Error>
Creates a new connection pool with a default pool configuration and the given connection options; and, immediately establishes one connection.
sourcepub fn connect_lazy(uri: &str) -> Result<Self, Error>
pub fn connect_lazy(uri: &str) -> Result<Self, Error>
Creates a new connection pool with a default pool configuration and the given connection URI; and, will establish a connections as the pool starts to be used.
sourcepub fn connect_lazy_with(
options: <DB::Connection as Connection>::Options
) -> Self
pub fn connect_lazy_with( options: <DB::Connection as Connection>::Options ) -> Self
Creates a new connection pool with a default pool configuration and the given connection options; and, will establish a connections as the pool starts to be used.
sourcepub fn acquire(
&self
) -> impl Future<Output = Result<PoolConnection<DB>, Error>> + 'static
pub fn acquire( &self ) -> impl Future<Output = Result<PoolConnection<DB>, Error>> + 'static
Retrieves a connection from the pool.
Waits for at most the configured connection timeout before returning an error.
sourcepub fn try_acquire(&self) -> Option<PoolConnection<DB>>
pub fn try_acquire(&self) -> Option<PoolConnection<DB>>
Attempts to retrieve a connection from the pool if there is one available.
Returns None
immediately if there are no idle connections available in the pool.
sourcepub async fn begin(&self) -> Result<Transaction<'static, DB>, Error>
pub async fn begin(&self) -> Result<Transaction<'static, DB>, Error>
Retrieves a new connection and immediately begins a new transaction.
sourcepub async fn try_begin(&self) -> Result<Option<Transaction<'static, DB>>, Error>
pub async fn try_begin(&self) -> Result<Option<Transaction<'static, DB>>, Error>
Attempts to retrieve a new connection and immediately begins a new transaction if there is one available.
sourcepub async fn close(&self)
pub async fn close(&self)
Shut down the connection pool, waiting for all connections to be gracefully closed.
Upon .await
ing this call, any currently waiting or subsequent calls to Pool::acquire and
the like will immediately return Error::PoolClosed and no new connections will be opened.
Any connections currently idle in the pool will be immediately closed, including sending a graceful shutdown message to the database server, if applicable.
Checked-out connections are unaffected, but will be closed in the same manner when they are returned to the pool.
Does not resolve until all connections are returned to the pool and gracefully closed.
Note: async fn
Because this is an async fn
, the pool will not be marked as closed unless the
returned future is polled at least once.
If you want to close the pool but don’t want to wait for all connections to be gracefully
closed, you can do pool.close().now_or_never()
, which polls the future exactly once
with a no-op waker.
sourcepub fn is_closed(&self) -> bool
pub fn is_closed(&self) -> bool
Returns true
if .close()
has been called on the pool, false
otherwise.
sourcepub fn close_event(&self) -> CloseEvent ⓘ
pub fn close_event(&self) -> CloseEvent ⓘ
Get a future that resolves when Pool::close()
is called.
If the pool is already closed, the future resolves immediately.
This can be used to cancel long-running operations that hold onto a PoolConnection
so they don’t prevent the pool from closing (which would otherwise wait until all
connections are returned).
Examples
These examples use Postgres and Tokio, but should suffice to demonstrate the concept.
Do something when the pool is closed:
use sqlx::PgPool;
let pool = PgPool::connect("postgresql://...").await?;
let pool2 = pool.clone();
tokio::spawn(async move {
// Demonstrates that `CloseEvent` is itself a `Future` you can wait on.
// This lets you implement any kind of on-close event that you like.
pool2.close_event().await;
println!("Pool is closing!");
// Imagine maybe recording application statistics or logging a report, etc.
});
// The rest of the application executes normally...
// Close the pool before the application exits...
pool.close().await;
Cancel a long-running operation:
use sqlx::{Executor, PgPool};
let pool = PgPool::connect("postgresql://...").await?;
let pool2 = pool.clone();
tokio::spawn(async move {
pool2.close_event().do_until(async {
// This statement normally won't return for 30 days!
// (Assuming the connection doesn't time out first, of course.)
pool2.execute("SELECT pg_sleep('30 days')").await;
// If the pool is closed before the statement completes, this won't be printed.
// This is because `.do_until()` cancels the future it's given if the
// pool is closed first.
println!("Waited!");
}).await;
});
// This normally wouldn't return until the above statement completed and the connection
// was returned to the pool. However, thanks to `.do_until()`, the operation was
// cancelled as soon as we called `.close().await`.
pool.close().await;
Trait Implementations§
source§impl<'a, DB: Database> Acquire<'a> for &Pool<DB>
impl<'a, DB: Database> Acquire<'a> for &Pool<DB>
type Database = DB
type Connection = PoolConnection<DB>
fn acquire(self) -> BoxFuture<'static, Result<Self::Connection, Error>>
fn begin(self) -> BoxFuture<'static, Result<Transaction<'a, DB>, Error>>
source§impl<DB: Database> Clone for Pool<DB>
impl<DB: Database> Clone for Pool<DB>
Returns a new Pool tied to the same shared connection pool.
source§impl<'p, DB: Database> Executor<'p> for &Pool<DB>where
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
impl<'p, DB: Database> Executor<'p> for &Pool<DB>where
for<'c> &'c mut DB::Connection: Executor<'c, Database = DB>,
type Database = DB
source§fn fetch_many<'e, 'q: 'e, E>(
self,
query: E
) -> BoxStream<'e, Result<Either<DB::QueryResult, DB::Row>, Error>>
fn fetch_many<'e, 'q: 'e, E>( self, query: E ) -> BoxStream<'e, Result<Either<DB::QueryResult, DB::Row>, Error>>
source§fn fetch_optional<'e, 'q: 'e, E>(
self,
query: E
) -> BoxFuture<'e, Result<Option<DB::Row>, Error>>
fn fetch_optional<'e, 'q: 'e, E>( self, query: E ) -> BoxFuture<'e, Result<Option<DB::Row>, Error>>
source§fn prepare_with<'e, 'q: 'e>(
self,
sql: &'q str,
parameters: &'e [<Self::Database as Database>::TypeInfo]
) -> BoxFuture<'e, Result<<Self::Database as HasStatement<'q>>::Statement, Error>>
fn prepare_with<'e, 'q: 'e>( self, sql: &'q str, parameters: &'e [<Self::Database as Database>::TypeInfo] ) -> BoxFuture<'e, Result<<Self::Database as HasStatement<'q>>::Statement, Error>>
source§fn execute<'e, 'q: 'e, E>(
self,
query: E
) -> BoxFuture<'e, Result<<Self::Database as Database>::QueryResult, Error>>
fn execute<'e, 'q: 'e, E>( self, query: E ) -> BoxFuture<'e, Result<<Self::Database as Database>::QueryResult, Error>>
source§fn execute_many<'e, 'q: 'e, E>(
self,
query: E
) -> BoxStream<'e, Result<<Self::Database as Database>::QueryResult, Error>>
fn execute_many<'e, 'q: 'e, E>( self, query: E ) -> BoxStream<'e, Result<<Self::Database as Database>::QueryResult, Error>>
source§fn fetch<'e, 'q: 'e, E>(
self,
query: E
) -> BoxStream<'e, Result<<Self::Database as Database>::Row, Error>>
fn fetch<'e, 'q: 'e, E>( self, query: E ) -> BoxStream<'e, Result<<Self::Database as Database>::Row, Error>>
source§fn fetch_all<'e, 'q: 'e, E>(
self,
query: E
) -> BoxFuture<'e, Result<Vec<<Self::Database as Database>::Row>, Error>>
fn fetch_all<'e, 'q: 'e, E>( self, query: E ) -> BoxFuture<'e, Result<Vec<<Self::Database as Database>::Row>, Error>>
Vec
.