nerdexam
F5

101 · Question #540

In the context of load balancing, what does the term persistence refer to?

The correct answer is A. Ensuring requests from a single source always end up being handled by the same server.. In load balancing, persistence (also called sticky sessions) ensures all requests from a given client are consistently routed to the same backend server for the duration of a session.

Section 3: Load Balancing and High Availability Basics

Question

In the context of load balancing, what does the term persistence refer to?

Options

  • AEnsuring requests from a single source always end up being handled by the same server.
  • Bthe ability to associate different HTTP requests to a single user so that activity can be tracked.
  • CKeeping TLS session key information in memory so sessions can be quickly resumed
  • Dthe ability to keep idle connections open as long as possible by sending dummy traffic

How the community answered

(25 responses)
  • A
    88% (22)
  • B
    8% (2)
  • C
    4% (1)

Why each option

In load balancing, persistence (also called sticky sessions) ensures all requests from a given client are consistently routed to the same backend server for the duration of a session.

AEnsuring requests from a single source always end up being handled by the same server.Correct

Load balancer persistence is implemented via mechanisms such as source IP hashing or session cookies injected by the load balancer, binding a client to a specific server. This is critical for stateful applications that store session data locally on a single server rather than in a shared store. Without persistence, subsequent requests could land on a different server that lacks the client's session state, causing application failures.

Bthe ability to associate different HTTP requests to a single user so that activity can be tracked.

Associating multiple HTTP requests to a single user for activity tracking describes application-layer session management, not the load balancing concept of persistence.

CKeeping TLS session key information in memory so sessions can be quickly resumed

Storing TLS session keys to enable faster resumption describes TLS session caching, which is a separate SSL/TLS optimization unrelated to load balancer routing decisions.

Dthe ability to keep idle connections open as long as possible by sending dummy traffic

Sending dummy traffic to keep idle connections open describes TCP or HTTP keepalive behavior, not load balancer persistence.

Concept tested: Load balancer session persistence and sticky sessions

Topics

#persistence#session affinity#load balancing#server stickiness

Community Discussion

No community discussion yet for this question.

Full 101 Practice