InterviewSolution
Saved Bookmarks
| 1. |
What is HAProxy? |
|
Answer» HAProxy is a software-defined LOAD balancer and proxy application that is open SOURCE. In OpenShift, it accepts an application's URL route and PROXIES requests to the appropriate pod to return the needed data to the requesting user. HAProxy will ACCEPT all incoming connections if our application is scalable. It examines the HTTP protocol to determine to which application instance the connection should be forwarded. This is significant since it allows users to have sticky sessions. |
|