> For the complete documentation index, see [llms.txt](https://docs.ionos.com/cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/cloud/databases/postgresql/overview/failover-process.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
