You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, SWS deploys application containers to only 1 server. But we also want the functionality to deploy same application containers to multiple servers and load balance requests across them. So we want 3 features:-
Deploy containers to multiple servers during application creation based on user input in request JSON. For Ex:- curl -X POST "URL" {"instances" : 3}
Increase the number of container instances i.e deploying containers for already running applications after user intervention or scaling up on demand. For Ex:- curl -X PUT "URL" {"instances" : 4}
Deploy containers to multiple servers without user intervention for already running applications if the requests to a single container exceeds a certain threshold i.e autoscaling
The text was updated successfully, but these errors were encountered:
Currently, SWS deploys application containers to only 1 server. But we also want the functionality to deploy same application containers to multiple servers and load balance requests across them. So we want 3 features:-
The text was updated successfully, but these errors were encountered: