From the course: Azure Microservices with .NET Core for Developers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Designing a microservices solution

Designing a microservices solution - Azure Tutorial

From the course: Azure Microservices with .NET Core for Developers

Start my 1-month free trial

Designing a microservices solution

- In this course, we'll create a fictionally commerce microservices solution. This solution will include four microservices. Products, customers, orders, and search. The first three microservices will manage their own data. That's one of the main trades of a microservice, precisely. They'll use in-memory data but as you'll see you can change these to a real database very quickly. The search microservice will synchronously communicate to the other microservices to obtain data from a particular customer. The search microservice will return the aggregated data. To accomplish this, we're going to do the following tasks. First, we're going to develop the microservices by using Visual Studio and .Net core. Then we're going to create Docker container images and a Docker can close a script to debug locally. Next, we're going to push the source code to a centralized repos such as Azure dev ops. We're going to create various build and…

Contents