# Failover Process

**Planned failover:** During a failure or planned failover, the client[^1] must reconnect to the database. A planned failover is signaled to the client by the closing of the TCP connection on the server. The client must also close the connection and reconnect.

In the event of a failure, the connection might not be closed correctly. The new leader will send a gratuitous ARP packet to update the MAC address in the client's ARP table. Open TCP connections will be reset once the client sends a TCP packet. We recommend re-establishing a connection to the database by using an exponential back-off retry with an initial immediate retry.

**Uncontrolled disconnection:** As we do not allow read connections to standby nodes, only primary disconnections are possible. However, uncontrolled disconnections may occur during maintenance, cluster configuration changes, or during unexpected events such as storage exhaustion. These interruptions terminate ongoing transactions; therefore, you should configure your clients to reconnect automatically.

If a node disconnects from the cluster, the system automatically creates and provisions a replacement node. If the primary node is lost, the client reconnects automatically. If a replica node is lost, there is no visible impact.

[^1]: Any application or process that opens a connection to the PostgreSQL server. The client refers to an application code, connection pools such as `PgBouncer` or `Pgpool-II`, and command-line tools such as `psqls` or `pg_dumps`.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ionos.com/cloud/databases/postgresql/overview/failover-process.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
