Load balancing among multiple instances of a backend application

479 Views Asked by At

I have a java based client application that wants to talk to multiple instances of a legacy backend application, using "some" load balancing strategy. The instances' details (IP, PORT & Active?) of this back-end application are stored in a DB table. For a given instance, the client application makes a socket connection, sends commands and receives response. These socket connections are long-lived.

To be able to utilize all of the available instances, I am planning to do the following in client:

  1. Read the healthy instances to a map
  2. Open connections or use existing Socket connections in a round-robin fashion
  3. Send request on a given socket connection. If the request fails, then mark this instance as unhealthy so that it will not be picked up again. Also retry the request on another connection
  4. In a worker thread periodically update the map from # 1

Are there any tools/libraries available to achieve this? Apache Camel came up in Google search (also Ribbon and Hystrix), but I am not entirely sure how I can fit it in this scenario. Please help.

1

There are 1 best solutions below

1
On

What you are describing here is a service connection pool

Since (I presume) your legacy system requires custom code to connect to the legacy backend, you will need to write the connection code yourself, but you can see if you can leverage off this:

https://camel.apache.org/manual/latest/servicepool.html

You might consider writing your own apache camel component, in this case (once you have written the component), you can write apache camel endpoints like direct(mylegacybackend:...) and let the component do the heavy lifting (service connection pooling) for you.

It also depends on if your component is a producer (push) or consumer (pull).

Have a read of that link and see if it might suit. Good luck.