Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

โ€œInvest in yourself โ€” your confidence is always worth it.โ€

Explore Cosmetic Hospitals

Start your journey today โ€” compare options in one place.

DOTNET: Threading Design Example threading anti-patternsm, proper async/await & concurrency behavior


We can do this with one self-contained minimal API that has:

  • A โ€œbadโ€ endpoint showing threading anti-patterns (blocking, .Result, Thread.Sleep)
  • A โ€œgoodโ€ endpoint using proper async/await
  • A /stats endpoint to see concurrency behavior
  • Then weโ€™ll use dotnet-counters + simple load to see the impact.

1๏ธโƒฃ Create the project

dotnet new web -n ThreadingDemo
cd ThreadingDemo
Code language: JavaScript (javascript)

Replace all contents of Program.cs with this:

This single file gives you:

  • /bad โ†’ blocked threads / ThreadPool pressure
  • /good โ†’ healthy async behavior
  • /stats โ†’ concurrency snapshot

2๏ธโƒฃ Run the app

From the ThreadingDemo folder:

dotnet run

It will listen on:

  • http://localhost:5000 (default)

Test quickly:

curl http://localhost:5000/bad
curl http://localhost:5000/good
curl http://localhost:5000/stats
Code language: JavaScript (javascript)

3๏ธโƒฃ Experience the problem: BAD threading under load

The /bad endpoint:

  • Uses Thread.Sleep() โ†’ blocks the thread
  • Uses Task.Delay(100).Result โ†’ sync-over-async, blocks the thread
  • Under concurrent load, the ThreadPool threads get stuck, new requests wait โ‡’ latency goes up, throughput drops.

๐Ÿงช Simulate load on /bad

Option A โ€“ PowerShell (parallel-ish)

# Fire 50 requests, roughly in parallel
1..50 | ForEach-Object {
    Start-Job { curl "http://localhost:5000/bad" }
}
Code language: PHP (php)

Or more aggressively:

1..200 | ForEach-Object {
    Start-Job { curl "http://localhost:5000/bad" }
}
Code language: JavaScript (javascript)

Then check:

curl "http://localhost:5000/stats"
Code language: JavaScript (javascript)

Youโ€™ll see:

  • maxBad grow
  • Responses from /bad will be slow (hundreds or thousands of ms)

4๏ธโƒฃ Compare with GOOD endpoint under same load

Do the same with /good:

1..200 | ForEach-Object {
    Start-Job { curl "http://localhost:5000/good" }
}
curl "http://localhost:5000/stats"
Code language: JavaScript (javascript)

You should observe:

  • GOOD handled in ... ms is more stable
  • maxGood may be higher (more concurrency successfully handled)
  • Latency is smoother because threads are not blocked โ€” theyโ€™re freed while awaiting.

5๏ธโƒฃ Debug / Observe Threading Issues with Tools

Now letโ€™s add tools on top, so you can show this in training.

๐Ÿ”น Step 1: Find the process ID

In a new terminal:

dotnet-counters ps

Look for ThreadingDemo / dotnet with the project path.

Note the PID (e.g., 12345).


๐Ÿ”น Step 2: Monitor runtime with dotnet-counters

Run:

dotnet-counters monitor --process-id <PID> System.Runtime Microsoft.AspNetCore.Hosting
Code language: CSS (css)

Watch these metrics while hitting /bad vs /good:

Key ones:

  • ThreadPool Thread Count
  • ThreadPool Queue Length
  • CPU Usage
  • Requests / sec (from hosting)
  • gc-heap-size

What you should see

When hammering /bad:

  • ThreadPool Thread Count goes up
  • ThreadPool Queue Length might stay elevated
  • CPU can be high due to lots of blocking and context switching
  • Requests/sec typically lower than expected

When hammering /good:

  • ThreadPool threads are reused efficiently
  • Queue Length often stays low
  • CPU usage is better for same number of requests
  • Requests/sec improves, latency is lower

๐Ÿ”น Step 3: Visual Studio Diagnostic Tools (optional)

If you run from Visual Studio:

  1. Start the app with Debug โ†’ Start Debugging.
  2. Open Debug โ†’ Windows โ†’ Parallel Stacks / Parallel Tasks.
  3. Watch the number of running threads and tasks as you hammer /bad and /good.

Youโ€™ll see:

  • For /bad: more stuck threads, longer lifetimes
  • For /good: tasks start/complete quickly, threads not held hostage

6๏ธโƒฃ How to explain this behavior conceptually

In /bad:

  • Thread.Sleep โ†’ the worker thread is doing nothing but cannot process other requests.
  • Task.Delay(...).Result โ†’ the operation is asynchronous internally, but you force it to be synchronous, so:
    • The thread blocks until delay finishes
    • Under load: too many blocked threads โ†’ ThreadPool grows โ†’ context switching overhead โ†’ queue length and latency grow.

In /good:

  • await Task.Delay(...) โ†’ the thread returns to the pool while waiting
  • When the delay completes, the continuation resumes (on a thread pool worker)
  • The same set of threads can handle many more in-flight requests.

So itโ€™s mostly a programming practice issue, not a โ€œ.NET design flawโ€:

  • โŒ Bad code: blocking, sync-over-async, Thread.Sleep on server
  • โœ… Good code: async all the way, no .Result, no .Wait()

7๏ธโƒฃ Quick summary for your training slide

You can summarize this demo as:

  • /bad: Blocking calls (Thread.Sleep, .Result) โ†’ ThreadPool starvation โ†’ high latency, low throughput
  • /good: Proper async/await โ†’ threads freed โ†’ better scalability and responsiveness
  • Tools: dotnet-counters + /stats endpoint give direct visibility into concurrency & runtime behavior.

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services โ€” all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Bihar Tourism: Complete Travel Guide to Tourist Places, Culture, Food & Things to Do

The plains along the Ganges hold the foundations of ancient empires, global centers of learning, and the origins of two world religions. Bihar Tourism offers travelers an…

Read More

Complete Guide to Upcoming Events, Tickets & Things to Do

Lucknow is widely known for its classical heritage, historic architecture, and legendary culinary traditions. Beyond its timeless monuments, the city is also home to an active, modern…

Read More

What MedTech Teams Should Understand Before Building SaMD Products

Software is no longer a supporting feature in much of medical technology. It is increasingly the product itself, responsible for interpreting data, guiding clinical decisions, monitoring patients,…

Read More

Best Knee Replacement Hospitals in India: How to Choose the Right Hospital & Surgeon

Facing chronic joint stiffness or learning that a family member may need joint surgery brings up critical healthcare decisions. When daily tasks like climbing stairs, walking around…

Read More

Events in Kolkata: Complete Guide to Upcoming Events, Tickets & Things to Do

Kolkata has a distinct pulse, driven by a rich heritage that effortlessly intersects with a modern, dynamic cultural calendar. From intimate acoustic sessions in heritage cafes to…

Read More

How to Create a Professional Training Agenda in Minutes with the DevOpsSchool Training Agenda Builder

Designing a good training program sounds simple: Choose a topic โ†’ divide it into sessions โ†’ start teaching. In reality, creating a professional training agenda requires much…

Read More
Subscribe
Notify of
guest
3 Comments
Newest
Oldest Most Voted
Jason Mitchell
Jason Mitchell
9 months ago

Awesome writeโ€‘up โ€” this article does a great job showing how easy it is for .NET developers to accidentally fall into threading antiโ€‘patterns if they donโ€™t understand the difference between blocking and asynchronous design. The contrast between the โ€œbadโ€ endpoint (blocking calls like Thread.Sleep() or .Result) and the โ€œgoodโ€ endpoint using proper async/await really illustrates how blocking threads under load can lead to ThreadPool starvation, high latency and poor scalability. I also like how the accompanying /stats endpoint + dotnetโ€‘counters demo makes the consequences of bad design visible โ€” thatโ€™s a powerful lesson for anyone building scalable HTTP services. For modern web APIs or highโ€‘traffic services, adopting async patterns over synchronous/blocking calls is not just best practice โ€” itโ€™s essential for responsiveness and throughput. ๐Ÿ‘

Skylar Bennett
Skylar Bennett
9 months ago

This article gives a very clear and practical illustration of the risks of โ€œblockingโ€‘threadโ€ antiโ€‘patterns and why embracing proper async/await concurrency is essential in .NET applications. The contrast between the /bad endpoint (with blocking calls like Thread.Sleep() or .Result) and the /good endpoint (using await Task.Delay(...)) shows in a concrete, measurable way how blocking threads under load kills throughput and raises latency, while async code keeps threads free, improves scalability and responsiveness. Using tools like dotnetโ€‘counters to monitor threadโ€‘pool usage and requestโ€‘perโ€‘second under load adds realโ€‘world observability โ€” a great teaching aid for developers or when training teams. Overall, itโ€™s a highly useful resource for anyone designing concurrent .NET services, particularly in web/server contexts.

Skylar Bennett
Skylar Bennett
9 months ago

this article gives a very clear and practical illustration of the risks of โ€œblockingโ€‘threadโ€ antiโ€‘patterns and why embracing proper async/await concurrency is essential in .NET applications. The contrast between the /bad endpoint (with blocking calls like Thread.Sleep() or .Result) and the /good endpoint (using await Task.Delay(...)) shows in a concrete, measurable way how blocking threads under load kills throughput and raises latency, while async code keeps threads free, improves scalability and responsiveness. Using tools like dotnet-counters to monitor threadโ€‘pool usage and requestโ€‘perโ€‘second under load adds realโ€‘world observability โ€” a great teaching aid for developers or when training teams. Overall, itโ€™s a highly useful resource for anyone designing concurrent .NET services, particularly in web/server contexts.

3
0
Would love your thoughts, please comment.x
()
x