Http requests from users from
different ip address--> Goes to a client Server-->Through an API provided by MyProject, requests are sent to Myproject Server through a load balancer(ip address is same for all requests).
Myproject have three different servers. For stateless using round robin method og NGINX, 3 servers processes the request.
For stateful, all requests should go to only 1 instance of MyProject server. Issue here is I cannot use ip hash and for cookies method mentioned in the url http://dgtool.blogspot.nl/2013/02/nginx-as-sticky-balancer-for-ha-using.html
not sure if it will work since my requests are not from a browser, but a server.
different ip address--> Goes to a client Server-->Through an API provided by MyProject, requests are sent to Myproject Server through a load balancer(ip address is same for all requests).
Myproject have three different servers. For stateless using round robin method og NGINX, 3 servers processes the request.
For stateful, all requests should go to only 1 instance of MyProject server. Issue here is I cannot use ip hash and for cookies method mentioned in the url http://dgtool.blogspot.nl/2013/02/nginx-as-sticky-balancer-for-ha-using.html
not sure if it will work since my requests are not from a browser, but a server.