+1 vote
What are the different strategies of Microservices Deployment?
in Service Discovery by

1 Answer

0 votes

Multiple Service Instance per Host: Run single or multiple service instances of the application on single/multiple physical/virtual hosts. 

Service Instance per Host: Run a service instance per host.

Service Instance per Container: Run each service instance in its respective container.

Serverless Deployment: Package the service as a ZIP file and upload it to the Lambda function. The Lambda function is a stateless service that automatically runs enough micro-services to handle all requests. 

by
...