# Load Balancing

Load balancing is a way to distribute network traffic across multiple servers that uses balancing methods to improve the overall response time and availability of applications. It ensures equal distribution so that no one server has to handle too many requests.

There are several balancing methods or algorithms:

* Least connections: Directs the traffic to the server with the fewest active connections.
* Least response time: Directs the traffic to the server with the fewest active connections and the lowest average response time.
* Round robin: The traffic rotates through the available servers, which can be useful when the servers all have equal value and don’t require persistent connections.
* IP hash: The client’s IP address determines which server receives its request.


---

# 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.transparentedge.eu/getting-started/faq/glosario/load-balancing.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.
