> 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.

Why is your ASP.NET server so slow? 10 performance problems and solutions – Michael’s Coding Spot

Why is your ASP.NET server so slow? 10 performance problems and solutions – Michael’s Coding Spot

Server performance problems can happen for many different reasons. Memory issues, slow database requests, and too few machines are just some of them. I witnessed my fair share of problems and learned a few tricks along the way. In this article, I’ll tell you about 10 types of issues that can cause performance problems in your server. That’s not to say I categorized all possible problem types, but these might give you some ideas and nudge you in the right direction next time you’re digging into perf matters.

Here they are, in no particular order:

1. Slow database calls

A fast interaction with your database is probably the single most important thing for good performance. At least in most applications. Unfortunately, there are lots of things that can go wrong, and even innocent-looking implementations can cause problems. Here are some issues that can originate slow database requests and ruin your application’s performance:

var adults = dbContext.Users.Where(user => user.Age >= 18);
var adults = dbContext.Users.Where(user => user.Age >= 18).ToList();
var count = users.Count;

The hardest part of solving these problems is to identify them in the first place. There are many tools to see how your requests perform in production. Usually, the database itself will be able to show slow queries, scaling problems, network reaching its limits, etc. APM solutions like Application Insights show this very well. It’s also pretty simple to add request execution time to your logs and build queries and automation around that.

2. Memory Pressure

One of the most common offenders in high-throughput servers is memory pressure. In this state, the garbage collector doesn’t keep up with memory allocations and deallocations. When the GC is pressured, your server spends more time during garbage collection and less time executing code.

This state can happen in several cases. The most common case is when your memory capacity runs out. When you’re reaching the memory limit, the garbage collector will panic and initiate more frequent full GC collections (those are the expensive ones). But the issue is why this happens in the first place? Why is your memory reaching close to its limit? The reason for that is usually poor cache management or memory leaks. This is pretty easy to find out with a memory profiler by capturing a memory snapshot and checking what’s eating up all the bytes.

The important thing is to realize that you have a memory problem in the first place. The easiest way to find that out is with performance counters.

3. No caching

Caching can be a great optimization technique. The canonical example is that when a client sends a request, the server can save the result in cache. When the client sends the same request again (might be a different client or the same one), the server doesn’t need to query the database again or do any sort of calculation to get the result. It just retrieves it from cache.

A simple example of this is when you search for something on Google. If it’s a common search, it’s probably being asked for many times each day. There’s no point to re-do whatever magic Google is doing to get the first page with the same 10 results. It can be retrieved from the cache.

The tradeoff is that cache adds complexity. For one thing, you need to invalidate that cache every once in a while. In the case of Google search, consider that when searching for the news, you can’t return the same result forever. Another issue with cache is that if not managed correctly, it can bloat and cause memory problems.

If you’re using ASP.NET, there are excellent cache implementations that do most of the work for you.

4. Non-optimal GC mode

The .NET garbage collector has two different modes: Workstation GC mode and Server GC mode. The former is optimized for a quick response with minimal resource usage and the latter for high throughput.

The .NET runtime sets the mode by default to Workstation GC in desktop apps and Server GC in servers. This default is almost always best. In the case of a server, the GC will use much more machine resources but will be able to handle a bigger throughput. In other words, the process will have more threads dedicated to garbage collection and it will be able to deallocate more bytes per second.

For whatever reason, your server may work in Workstation mode, and changing to Server mode will improve performance. In rare cases, you might want to set the server GC mode to Workstation, which may be reasonable if you want the server to consume fewer machine resources (CPU & RAM).

5. Unnecessary client requests

Sometimes, it’s possible to significantly reduce the number of client requests. Reduce that number, and you can have fewer server machines or just less load for the existing ones. Here are a few ways to do that:

6. Request hangs

In certain conditions, requests become hung. That is, you send a request but never receive a response. Or rather you eventually receive a timeout response. This can happen, for example, if there’s a deadlock in the code that handles the request. Or if you have some kind of an infinite loop, which is called a CPU-bound hang. Or if you’re waiting indefinitely for something that never comes—like a message from a queue, a long database response, or a call to another service.

Under the hood, when a request hang happens, it hangs one or more threads. But the application will keep functioning, working with other threads for new requests. Assuming this hang reproduces on additional requests, more threads will hang over time. The consequences depend on the cause of the hang. If it’s a CPU-bound hang, like an infinite loop, the CPU cores will max out pretty quickly, which will make the system crawl, resulting in very slow requests. Eventually, the IIS will start returning 503 error responses (Service Unavailable). If the cause is a deadlock, then it will gradually lead to memory and performance issues as well, and eventually to the same results—very slow requests and 503 errors.

So request hangs can be pretty devastating to your server’s performance if they keep happening.

The solution to this is to solve the core cause of the problem. You’ll have to first identify that there are indeed hangs and then take steps to debug those hangs.

7. Server crashes

Like hangs, crashes can manifest as a performance problem.

When does an ASP.NET server crash though? When a regular exception happens during a request, the application won’t crash. The server returns a 500 error response, and everything continues as usual. But a crash might happen if an exception happens outside of a request context, like in a thread you started yourself. Other than that, there are catastrophic exceptions like OutOfMemoryException, ExecutionEngineException, and my favorite a StackOverflowException. Those will crash the process no matter how many catch clauses you place.

When an ASP.NET application that’s hosted in IIS crashes, the server will be down temporarily. IIS will perform an application pool recycle, which will restart your server and return to business to usual. The effect for the client will be temporary slow requests or 503 errors.

Depending on your application, one crash might not be the end of the world, but repeated crashes will make the server very slow, concealing the real reason as a performance problem. The solution to this is, of course, to deal with the root cause of the crash.

8. Forgetting to scale

This problem is pretty obvious but I’ll mention it nevertheless. As your application usage starts to grow, you have to consider how to handle a bigger throughput.

The solution is to scale of course. There are two ways you can do that—vertical scaling (aka scaling up) and horizontal scaling (aka scaling out). Vertical scaling means adding more power to your machines like more CPU and RAM, while horizontal scaling means adding more machines.

Cloud providers usually offer some kind of easy automatic scaling, which is worth considering.

9. Major functionality around every request

It’s pretty common to decorate your requests with additional functionality. These might come in the form of ASP.NET Core middleware or Action filters. The functionality might be telemetry, authorization, adding response headers, or something else entirely. Take extra notice of these pieces of code because they are executed for every request.

Here’s an example of something I experienced myself. The server in question included a middleware that would check on each request if the user had a valid license. This involved sending a request to Identity Server and a database call. So each request had to wait for those responses, adding a bunch of time and adding more load on both the Identity Server and the database. The solution was a simple cache mechanism that kept the license information in-memory for a day.

If you have similar functionality, cache might be an option. Another option may be to do things in batches. e.g. log telemetry every 1000 times instead of every single time. Or maybe place messages in a queue, turning this functionality to asynchronous.

10. Synchronous vs Asynchronous

Whenever your server sends a request to some service and needs to wait for a response, there’s a risk. What if that other service is busy, handling a big queue of requests? What if it has a performance problem that you have to transitively suffer as well?

The basic pattern to deal with this is to change the synchronous call to asynchronous. This is usually done with a queue service like Kafka or RabbitMQ (Azure has queue services as well). Instead of sending a request and waiting for a response, you would send a message to such a queue. The other service will pull these messages and handle them.

What if you need a response, though? Then instead of waiting for one, the other service will send a message with the response to the same queue. You’ll be pulling messages from the queue as well, and when the response arrives you can handle it as needed, outside of the context of the original request. If you need to send the response to a client, you can use push notification with something like SignalR.

The nice thing about this pattern is that the system components never actively wait for services. Everything is handled asynchronously instead of synchronously. Another advantage is that services can be much more loosely coupled with each other.

The drawback is that this is much more complicated. Instead of a simple request to a service you need to introduce a queue, pushing and pulling messages, and dealing with things like service crashes when a message was pulled but not yet handled.

Finishing up

Many things can mess up your server’s performance and there’s a lot of place for errors. I think there are no tricks and shortcuts to building a fast and robust system. You need careful planning, experienced engineers, and a big buffer of time for things that will go wrong. And they will, which requires the next most important thing: debugging those problems. Detecting the issue and finding the core cause is usually 90% of the work. In case of server problems, many tools can help like Performance Counters, APM tools, performance profilers, and others. If you want to find out more, you can check out my book: Practical Debugging for .NET Developers that explains how to troubleshoot performance problems.

That’s it for now, cheers.

Share:

Enjoy the blog? I would love you to subscribe!

Performance Optimizations in C#: 10 Best Practices (exclusive article)

Want to become an expert problem solver? Check out a chapter from my book Practical Debugging for .NET Developers

This content was originally published here.

Malcare WordPress Security

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