How to make Spring Zuul High Available?

I would like to use Zuul as a proxy for some of the REST services that I use. My question is: since I run it as a Spring boot application, is there a way to configure it for high availability?

EDIT: Do I need to deploy my application to an application server that supports HA?

+6
source share
1 answer

You can deploy multiple instances of your Zuul Proxy behind a load balancer to achieve high availability.

For example, in AWS, you would put it behind ELB (Elastic Load Balancer).

You can continue to use the standard Spring bootable executable JAR format without any problems.

+7
source

All Articles