Agent Server High Availability
Below is a quick guide on the load balancer rules to apply when hosting multiple Agent servers behind a load balancer.
Load Balancing Administration and Messaging API Calls
Symphony Administration and messaging API calls are stateless. These types of requests can be forwarded to any Agent server that is available:
VIP Name | SSL Offload | Persistent Sessions | Balance Method | Sticky | Server List |
| Yes | *No | Round Robin | No |
See Health Check endpoint documentation for more details on the payload (code + message) received |
The above applies for non real-time events and messaging API calls (e.g. /agent/v4/datafeed)
Load Balancing Real Time Events and Messaging
Real-time messaging API calls (e.g. Datafeed) are session-based. Once a Datafeed is created on an Agent server host, subsequent API calls must be made to the same Agent server host.
Managing Session Persistence Using a Load Balancer
If you are using an F5 type load balancer, you can load balance requests to the same Agent server host by using one of the following:
source-ip: Directs API session requests to the same Agent server based solely on the source IP address of the calling application/bot.
cookie-injection: Initial API session request is injected with an HTTP cookie. This cookie is stored by the calling application/bot to ensure subsequent API calls connect to the same Agent to which the server previously connected.
VIP Name | SSL Offload | Persistent Sessions | Balance Method | Sticky | Server List |
| Yes | Yes (source-ip or cookie-injection) | Round Robin | Yes |
|
Managing Session Persistence Using a DNS-Based Load Balancer
If you are using a DNS based load balancer, you can load balance requests to the same physical Agent server host by using DNS resolution.
When you access the FQDN for the Agent server farm, DNS resolution gives you a physical Agent server host to which you can connect. Your application should make note of this physical Agent server host and forward all subsequent API calls to this Agent server.
Ensure the following values are set
Managing an Agent Server Host Failure
If an Agent server host fails, your application must manage the re-establishment of the connection. A failover from one server to another would require your application to re-establish a new datafeed channel.
Note: The Agent server itself is not session aware.
Last updated