Forum Discussion
shivohm
Aug 21, 2024Copper Contributor
What headless service can use for 40 to 50 microservices Application?
Hello Team,
We have over forty microservices and are using Virtual Machine to deploy our Angular web application and Dot Net Core. Could you recommend a serverless architecture service that we should use to launch our application?
The cost of the service should be lower than the VM design.
- sdtslmnBrass Contributor
For your microservices application with 40-50 services, transitioning to a serverless architecture on Azure can significantly reduce costs and simplify management compared to using VMs.
- Azure Functions: Ideal for running event-driven code and microservices that need to scale automatically. Azure Functions support multiple languages, including .NET Core, and you only pay for the execution time
- Azure Container Apps: If you have containerized microservices, Azure Container Apps allows you to run and scale them without managing complex infrastructure.
- Azure Logic Apps: Useful for integrating services and automating workflows across your microservices.
- Azure App Service: For web and API applications, Azure App Service provides a fully managed platform that supports scaling, automatic patching, and integration with Azure DevOps for CI/CD.
you can check out Azure's