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

agent.company.com:443 Description: Rule for the FQDN host domain of the Agent server(s). This value should also be configured in your agent.properties settings e.g: agent.host: localhost agent.https.port:8443 URI paths that are sent to the Agent servers are: /agent /pod

Yes

*No

Round Robin

No

agent-server1:8443/HTTPS agent-server2:8443/HTTPS Health-Check: https://agent-server:8443/agent/v3/health

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

agent.company.com:443 Description: Rule for the FQDN host domain of the Agent server(s). This value should also be configured in your agent.properties settings e.g: agent.host: localhost agent.https.port:8443 URI paths that are sent to the Agent servers are: /agent /pod

Yes

Yes (source-ip or cookie-injection)

Round Robin

Yes

agent-server1:8443/HTTPS agent-server2:8443/HTTPS Health-Check: https://agent-server:8443/agent/v3/health See Health Check endpoint documentation for more details on the payload (code + message) received

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.

Java DNS Caching

Oracle Java has a tendency to cache DNS resolution entries which will affect the above. When Java caches the DNS records your application/bot would continue to be sent to whichever host is stored in the DNS cache. To turn off Java DNS caching please edit the below file

Ensure the following values are set

networkaddress.cache.ttl = 0
networkaddress.cache.negative.ttl = 0

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