-Flow--:
1. Clients
2. Client server(not maintained by us)
3. Client requests (REST API service calls)
4.Load balancer
5, Myproject servers (3x) responds to services.
MyProject server creates a session id and sends it back in case of stateful calls, back to the client server and this id is carried in subsequent request-response.
This workflow is in place and working till we have 1 server. In case of 3 servers, we need to make step 4 and 5 sticky, so that all requests for a session id goes to the same server.
step 4 and 5 are under our control.
1. Clients
2. Client server(not maintained by us)
3. Client requests (REST API service calls)
4.Load balancer
5, Myproject servers (3x) responds to services.
MyProject server creates a session id and sends it back in case of stateful calls, back to the client server and this id is carried in subsequent request-response.
This workflow is in place and working till we have 1 server. In case of 3 servers, we need to make step 4 and 5 sticky, so that all requests for a session id goes to the same server.
step 4 and 5 are under our control.