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

1 Answer

0 votes
by

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. 

Related questions

+1 vote
asked Dec 20, 2019 in Service Discovery by sharadyadav1986
0 votes
asked Dec 20, 2019 in Service Discovery by sharadyadav1986
...