> mobileapp Strategy - From Idea to Mobile App RealityVinova Our team will brainstorm with you on where to begin, where to go, and how to get you there. Whether you have a spark of an idea or an existing app – we can help. Getting your mobile strategy right is what our unique services are all about. We’ll wrestle with business challenges, discover new opportunities that will help you define and refine your product ideas into mobile app reality.

How to use Database Sharding and Scale an ASP.NET Core Microservice Architecture

How to use Database Sharding and Scale an  ASP.NET Core Microservice Architecture

How to use Database Sharding and Scale an ASP.NET Core Microservice Architecture

Load Balance a C# ASP.NET Core Service and Use MySql App-Layer Sharding. Shows the Concepts, Which Also Apply to MongoDB, etc.

One of the big advantages of microservices is, that they can be scaled independently. This article shows the benefits and challenges of scaling one microservice and its database.

You will create a working example application and manually implement application-layer sharding. It shows how to choose a shard key based on the use-cases and data model. This helps to apply the same principles to DBMS with integrated scaling like MongoDB, etc.

Further reading: by and by

This is the first of two parts. You will implement the microservice and use a sharded DB.

In the second part, you will scale and run multiple container instances of the microservice and databases. You will use docker compose and a load balancer. Finally, you run JMeter load tests to see how the application scales when using a different number of instances.

1. Usecases and Datamodell

The example application consists of a user and a post microservice. They communicate via messages:

See also my previous article

The User microservice handles adding and modifying users. The Post microservices handles viewing and adding posts. There is far more interaction with the Post microservice. So when the load to the app increases the Post microservice will be the first microservice that needs to scale.

The name of the author is part of the PostService bounded context and therefore the Post microservice. Adding and modifying authors is done in the User microservice. The User microservice sends events when a new user is added or a username changes.

Logical Data Model of the PostService

Users can write posts in categories. They can also read the posts by category including the author name. Newest posts are on top. The categories are fixed and change seldom.

Based on these use-cases I decided to shard by category:

2. Implement the Microservice

Install (it’s free) with the ASP.NET and web development workload.

Create a solution and add an ASP.NET Core 5 Web API project with the name “PostService”. Disable HTTPS and activate OpenAPI Support.

Install the following NuGet packages:

  • Microsoft.EntityFrameworkCore.Tools
  • Microsoft.EntityFrameworkCore.Sqlite
  • Newtonsoft.Json

Create the Entities

The index of the Post entity should speed up the retrieval of the latest posts in a category:

https://medium.com/media/a751cda4cfd2fdb0dd76c36a4015df71/href

The Version in the User entity will later help to handle out-of-order messages:

https://medium.com/media/cad87d346da29296be2aa9fc232a65fb/hrefhttps://medium.com/media/a794d2c73e78c3ed859c18038c226fa8/href

Create the PostServiceContext

https://medium.com/media/738faf6dfb06930647d8b175baaace88/href

Add connection strings for the shards in appsettings.Development.json (you will use two shards during debugging)

https://medium.com/media/663b6737e9ae65c2b595649e858fb541/href

Add the DataAccess Code

GetConnectionString(string category)calculates the hash of the CategoryId. The first part of the hash modulo the number of configured shards (connection strings) determines the shard for the given category.

InitDatabase drops and recreates all tables in all shards and inserts dummy users and categories.

The other methods create and load posts.

https://medium.com/media/4639ff9260aa7c0ad10185f06aed4519/href

Register DataAccess as a singleton in Startup.cs

https://medium.com/media/6c6186be897d47ccfcd1194caffe8345/href

Create the PostController

It uses the DataAccess class

https://medium.com/media/db603cb3d7ee742e0e03207c5647cdd4/href

3. Access a Database from the PostService

Install

Create two MySql Containers (each command as one line)

C:\dev>docker run -p 3310:3306 --name=mysql1 -e MYSQL_ROOT_PASSWORD=pw -d mysql:5.6
C:\dev>docker run -p 3311:3306 --name=mysql2 -e MYSQL_ROOT_PASSWORD=pw -d mysql:5.6

Start the Post service in Visual Studio. The browser opens at http://localhost:5001/swagger/index.html

Use the swagger UI to interact with the service:

Init the Databases with 100 users and 10 categories:

Add a post to “Category1”:

{
"title": "MyTitle",
"content": "MyContent",
"userId": 1,
"categoryId": "Category1"
}

Read the top 10 posts in “Category1” to see your new post:

Connect to the database containers and verify which database contains the new post.

C:\dev>docker container exec -it mysql1 /bin/sh

Login to MySql with the password “pw” and read the posts:

The second instance does not contain any post:

C:\dev>docker container exec -it mysql2 /bin/sh

4. Final Thoughts and Outlook

You created a working application and implemented application-layer sharding and used the concept of shard keys.

In the second part, you will scale and run multiple container instances of the microservice and database. You will use docker compose and a load balancer. You will then run JMeter load tests to see how the application scales when using a different number of instances. Finally, you will simulate user events from the User microservice via RabbitMQ.

Please contact me if you have any questions, ideas, or suggestions.


How to use Database Sharding and Scale an ASP.NET Core Microservice Architecture was originally published in ITNEXT on Medium, where people are continuing the conversation by highlighting and responding to this story.

This content was originally published here.

Malcare WordPress Security

website development singapore,design firms in singapore,web design services singapore,web design singapore,website developer singapore,app development singapore,singapore website design,web design company singapore,design agency singapore,web designer singapore,singapore web design,singapore mobile application developer,website design singapore,developer in singapore,website designer singapore,graphic designer in singapore,ios developer singapore,web application singapore,singapore web development,web development company singapore,mobile apps development singapore,mobile apps singapore,android developer singapore,mobile game developer singapore,ios app development singapore,app developer singapore,mobile application developer singapore,developers in singapore,mobile application development singapore,ruby on rails developer singapore,web development singapore,singapore web design services,singapore mobile app developer,mobile developer singapore,mobile app development singapore,singapore app developer,mobile app developer singapore