Microservices with ASP.NET Core 3.1 (edit)
Refer: https://procodeguide.com/programming/microservices-asp-net-core/
https://dotnet.microsoft.com/learn/aspnet/microservices-architecture
Articles:
https://procodeguide.com/programming/microservices-architecture/
https://procodeguide.com/programming/analyze-aspnet-application-issues/
ASP.NET Core 3.1 Microservices Sample
Microservices is a type of Architecture in which application is created as multiple small independent serviceable components. This article will cover in detail how to create microservices with ASP.NET Core, Serilog, Swagger UI, Health Checks & Docker containers.
- Microservices Architecture
- Monolithic v/s Microservices
- Why microservices with ASP.NET Core?
- Implement Microservices with ASP.NET Core
- Benefits of Microservices
- Drawbacks with Microservices
- Best Practices
- Summary
- Source code download
Microservices Architecture
The Microservices architecture style is shown in the figure above. Microservices Architecture is a style in which one large application is developed as a set of small independent services. Here each service implements a specific functionality and has its own data store. Each service functionality should be small enough to implement just one use case and big enough to provide some value. Each service should be deployable separately so that it can be scaled independently. As far as possible these services should be independent of each other and if there is a need for inter-service communication then some lightweight communication protocol can be used.
Identity Provider is used to provide user authentication services to an application.
To know details about Identity Provider & also to know about how to secure your ASP.NET Core based application you can check my series on ASP.NET Core Security
API Gateway is a single entry point for all requests that help in managing the endpoints and coordinates with different services.
Container is a standard unit of software that bundles application or feature and all of its dependencies so that application can be deployed quickly and reliably on any new system that has container host.
Container Orchestration is a piece of software that is used to manage the life-cycle of containers in a large application. This helps to scale application on basis of the load.
Microservice is the actual small independent service which is bundled in a container along with it dependencies
Data Store is used to store microservice data and the basic principle is that each service manages its own data.
Monolithic v/s Microservices
Monolithic | Microservices |
---|---|
Single service/application should contain all the business functionality | Single service should contains only one business functionality |
All service are tightly coupled | All services are loosely coupled |
Application is developed in one single programming language | Each service can be in different programming language |
Single database for all services. | Each service has separate database |
All services needs to be deployed together on VM | Each service can be deployed on separate VM |
All services run in same process so if one service goes down then whole application breaks | Each service runs in different process so failure of one service does not affects other services |
Difficult to scale a particular service as new instance will have to have all services | Can be Scaled easily as any single service can be deployed independently |
Single large team works on whole application | Separate small team work on each Service which are more focused. |
Simple to develop & test small applications | Add complexity to the application by the fact that its a distributed system |
Why microservices with ASP.NET Core?
.NET Core provides following advantages which works for microservices
- A light-weight framework built from ground up
- Cross-platform support
- Optimized for containerization
Implement Microservices with ASP.NET Core
Here we will cover in detail the step by step process to create microservice with ASP.NET Core. We will be creating an order service that will provide endpoints to Add, Cancel, Get Order By Id & Get Order(s) By Customer Id in the application. This demo has been executed in Visual Studio 2019 version 16.6.2
Create Service with CRUD operations
Create ASP.NET Core Project
For microservices demo we will be creating a ASP.NET Core 3.1 Web API project.
Implement Order Service
We will be creating order microservice which will contain functionality only related to orders. We will be implementing following endpoints
- Add – To create a new order
- Cancel – To cancel an existing order
- GetById – Get Order by Id
- GetByCustomerId – Get all orders for Customer Id
Below we will quickly add the entity model for Order & enable entity framework core for order microservice.
If you need further details on how an entity framework works then check my other article on Entity Framework Core in ASP.NET Core 3.1
Add Model
Add an order entity class
Add CRUD operations to the API with entity framework core
We will make use of Entity Framework Core to implement database operations for the order service.
Install required packages for entity framework core
Add database context class
This is the main class that co-ordinates with entity framework functionality for a given model class.
Add Order Repository
The repository is a component that encapsulates the objects related to data storage and operations performed over them. DbContext is passed as a parameter in the constructor using dependency injection.
Connect application to the database
Specify the SQL Server connection string in appsettings.json file.
Register services in startup class
You need to configure the database context & order repository as a service in method ConfigureServices in the startup class
Add Migrations
To automate the migrations & create a database we need to run the following commands in the package manager console.
One thing to note here is that table is created for order details only. Product & Customer tables are not created with foreign key reference as you have to keep microservice small & focussed on one single functionality. Product & Customer will be in a separate database of their own with their own microservice implementation. If you need product details or customer details to be displayed as part of order details then you need to call respective microservice and fetch required details.
Add Order Controller
Here is the code for the order controller which has been added to expose the endpoints of the order microservice. Order Repository has been passed as a constructor parameter using dependency injection
Our order service is ready to perform operations. But to make it a microservice we will have to enable features like Logging, Exception Handling, Documentation, Monitoring, Containerization, etc.
Add Web API versioning
Microservices should be easy to change without breaking existing clients and also should be able to support multiple versions side by side so Web API versioning will help us achieve this.
Web API versioning is a feature using which we can implement multiple versions of the same API so that different clients can work with the required version of API.
Implement Web API versioning using URL
In Web API versioning using URL, the version number is part of the URL i.e. http://server:port/api/v1/order/add
Install Web API versioning package
Configure Web API versioning in Startup class
Enable support for Web API versioning in ConfigureServices method in the startup.cs file.
Add URL Web API versioning to order controller
You need to add parameter v{version:apiVersion} in route attribute like Route(“api/v{version:apiVersion}/[controller]”) so that API version becomes part of URL.
If you need further details on Web API versioning in ASP.NET Core then check my other article on Web API Versioning in ASP.NET Core 3.1
Newsletter Subscription
Stay updated! Instantly get notified about my new articles in your mailbox by subscribing via email
Add logging to microservice
After deploying to production it should be easy to track and analyze issues. Logs help us to analyze complex issues which sometimes might be difficult to simulate. There will always be a need to troubleshoot application issues for which logs will be required for analysis.
Implement logging with Serilog
There are many third-party providers and one of these is Serilog. Serilog is a popular third party logging provider that is supported in ASP.NET Core Logging.
Install required Serilog packages
Add Serilog configuration
Serilog RollingFile Sink is implemented by adding configuration to the appsettings.json file. Log level can be specified by setting the log level value in the property named MinimumLevel.
Configure Serilog in Program & Startup class
Add UseSerilog() to CreateDefaultBuilder in Program.cs
Load Serilog configuration from appsettings.json file in Startup.cs
Add logging in order controller
Serilog.Log class has been used to add logs with method Debug for debugging & Error in case of some exception.
Here for demonstration purposes, I have added logging feature only to the controller action ‘Add’ but as good practice, you need to add logs in a complete application with proper log levels which can assist in debugging complex issues on production. Since this is microservice, Async log writing has been configured as that reduces the overhead of logging calls by delegating work to a background thread.
Also, one more thing to note here is if you are running ASP.NET core application in docker container then you need to be careful with log file location as if you store the log file in the same container itself then there is a possibility of losing that data. In containerized environment logs should be stored on some persistent volume.
If you need further details on Logging with Serilog in ASP.NET Core then check my other article on ASP.NET Core Logging with Serilog
Add service monitoring mechanism
It is always good to keep a check on whether our service is up and running or functioning properly. Before our clients inform us about our broken service we should be able to proactively identify our broken services and take corrective actions. Healthchecks allow us to check if service is healthy i.e. up & running. Healthcheck endpoint can also be used to check its status from loadbalancer & disable a server on load balancer if our service returned failure for healthcheck on that server.
Implement microservice monitoring using ASP.NET Core Healthchecks
Healthchecks is an in-built middleware in ASP.NET Core for reporting the health of an application. Healthchecks can be exposed as one more endpoint in the application.
Install healthchecks packages
Using package manager console install the required packages for healthchecks
Configure healthchecks ins Startup class
Here we have configured basic application health check & Entity Framework database context health check that confirms that the app can communicate with the database configured for an Entity Framework Core DbContext
You can check the service health using URL http://serverip:port/checkhealth
Create documentation for microservice
It is always good to maintain updated documentation for microservices. Other teams should be able to refer to these API specifications and consume microservice accordingly. We will be implementing Swashbuckle.AspNetCore for generating Swagger documents for order microservice.
Implement documentation using Swashbuckle Swagger
Swashbuckle is an open-source library to generate swagger documentation for ASP.NET Core Web API. This documentation can be used to explore and test API.
Install required swashbuckle swagger packages
Using package manager console install the required packages for swashbuckle
Configure swagger ins Startup class
Below is the documentation generated with swagger for order microservice
Add containerization to microservice
Containerization is used to bundle an application or feature of an application, all of it dependencies & its configuration in a container image. This image is deployed on the host operating system and bundled application works as a unit. This concept of container images allows us to deploy these across environments with little or no modifications at all. This way it is easy to scale out microservice quickly as the new containers can be easily deployed for short term purposes.
Docker will be used to add containerization to our microservice. Docker is an open-source project for creating containers that can run on docker host either on cloud or on-premises.
Implement containerization using Docker
To enable docker support in ASP.NET Core project right on the project in the solution explorer and select Add=>Docker Support from the Menu
This will enable docker and also create a Dockerfile to the project as shown below
This makes the application run within a container on the Docker host. For this to work docker desktop should be installed on the windows machine.
Benefits of Microservices
- Gentle Learning Curve – As business functionality is broken into small services it allows developers to learn just the functionality of that service only.
- Better Scaling – Each service is deployed independently and so can be scaled separately.
- Lesser time to market – Application development cycle can be shorter as each service component is independent of each other.
- Fault Isolation – Failure of one service does not affect the operation of other services.
- No dependency on a single programming language & deployment model.
- Parallel & Fast development of different Services is possible as separate teams are working on different services.
Drawbacks with Microservices
- Small independent services require coordination among each other which may be not simple as compared to Monolith Application
- Managing distributed transactions across multiple services can be complex.
- There are Multiple Services/Components to Monitor.
- Testing can be little time consuming as each independent service needs to be tested before integrated testing.
- Whole deployment architecture for large applications becomes very Complex to Manage.
Microservices Architecture is about better handling a large & complex system but to achieve that it exposes its own set of complexities & implementation Challenges. Despite the disadvantages or problems, the benefits of adopting Microservices are driving factors for many companies to implement Microservices.
Best Practices
- Microservice should implement only one single functionality that should be able to deliver value.
- Each Microservice should have their own datastore and this should not be shared across services.
- Always maintain updated documentation for Microservices.
- Use containers for the deployment of services.
- DevOps & CI/CD practices
Summary
We covered what is microservice architecture and how to get started with microservices with ASP.NET Core 3.1. I have not covered one more important feature of microservice i.e automated testing. Automated unit testing is a very vast topic in itself and I will do a separate article on it.
Quick recap on microservices characteristics
- Microservices is a type of Architecture in which application is created as multiple small independent serviceable components
- Microservice should contain only single business functionality and should be small enough to stay focussed and big enough to deliver value.
- Each Microservice should have its own data store.
- Microservices can communicate with each other using lightweight protocol i.e. over HTTP or Advanced Message Queue Protocol (AMQP)
- Microservice can be deployed independently on a separate VM and can be scaled independently.
- There are benefits in implementing API Gateway for large & Complex Microservices based Applications.