Is it possible to route a single request to all instances using ELB?

I have a send request that will run the server code to cache in-memory data for all instances. Therefore, I need to redirect this request to all instances, although nginx. Can I configure it in ELB?

+4
source share
1 answer

No, this is not possible with ELB. I suggest either using a management tool, such as Chef, or using the AWS API to request the address of all instances in ELB and make a request to each

+1
source

Source: https://habr.com/ru/post/1583854/


All Articles