Race Conditions in C# .NET Core

Поделиться
HTML-код
  • Опубликовано: 6 фев 2025
  • Race conditions in c# asp.net core application can happen whenever you involve IO. We will answer questions like: what is a race condition? how to simulate race conditions? how to test and resolve race conditions in c#? how to solve race conditions in a distributed application?
    Patreon 🤝 / raw_coding
    Courses 📚 learning.raw-c...
    Shop 🛒 shop.raw-codin...
    Discord 💬 / discord
    Twitter 📣 / anton_t0shik
    Twitch 🎥 / raw_coding
    Source Code 📃 / raw_coding
    #aspnetcore #async #csharp

Комментарии • 64

  • @RawCoding
    @RawCoding  2 года назад

    Source code for patreon supporters includes an example of how to simulate race conditions using Threads.
    www.patreon.com/raw_coding

  • @Sad-Lemon
    @Sad-Lemon 2 года назад +6

    Anton, your channel is so underrated... I hope you hit 1M subs pretty soon! Thank you mate!

    • @RawCoding
      @RawCoding  2 года назад +2

      Hopefully one day :D

  • @Vlad-zr1fr
    @Vlad-zr1fr 2 года назад +3

    Hello, Anton
    Finally, I found a person who shows real things that are really useful for production, and not another set of CRUDs tutorials with a repository pattern (around EF) and 3-layer architecture.
    By the way, the guys from dev mentors also have very good content and trying to provide REAL things.
    It's not fair that your channel is so underrated, because people just need the simplest things, e.g python bases, how to parse a json files or create a bot that sends hello world (I'm a cool and useful bot (no)).
    I worked for a long time as a senior and lead software engineer in OLTP systems, microservices, DDD and etc. It was all around dotnet, C#, azure environment.
    2 years ago, I had a situation on a project where I had to migrate data from PostgreSQL to ClickHouse due to the performance of query execution and thus moved to OLAP systems, big data, python, spark, airflow, azure data factory etc., where a lot is built around python, SCALA, R, java and so on
    And it's really a shame that dotnet is quite capable of being in the same category, and in terms of performance, it's definitely one of the leaders.
    I don’t know if you have worked with Spark or not, but Microsoft has github.com/dotnet/spark, so do you believe in the future of dotnet in the context of big data, machine learning, etc?
    Thank you

    • @RawCoding
      @RawCoding  2 года назад +2

      Cheers, I think .NET is doing pretty good and will continue to do so.
      It has an amazing community and from what I've seen amongst other languages (java/python/js/clojure) c# has one of the best set of tools and frameworks out there.

  • @sauravbhatta5303
    @sauravbhatta5303 2 года назад +14

    Great content Anton. Learning from you is great.

  • @ivandrofly
    @ivandrofly 7 месяцев назад

    11:39 - I think the explanation about thread starvation is a bit confusing …
    But here is my understanding:
    10 Tasks
    5 Threads
    1 thread made it through the locks
    4 threads waits (each one with a task assigned)
    Threads #1 (in the lock) go to read file see async/await return to thread pool then it get assigned a new task task#6 comes and see the lock blocks too!
    Important: Assuming the thread-pool size is 5; if not then a thread from the thread-pool will just be assigned to the file-writing that was previously started by thread#1 and leave the lock.
    Ps: For those curious to see this simulation, make sure U set the ThreadPool.SetMinThreads and also ThreadPool.SetMaxThreads

  • @brunogiovagnoli3022
    @brunogiovagnoli3022 Год назад +1

    I have been watching Anton since the beginning of his channel and it is amazing to see how much he has improved the quality of his content. Each time he explains better and in less time.
    Community: How could we help him get more popularity and views? Can you imagine Anton dedicating himself to RUclips full-time? 😱

  • @ivandrofly
    @ivandrofly 10 месяцев назад

    The last part about how you can use Redis to handle lock on a distributed system / distributed lock is very useful

  • @chrismoutray9206
    @chrismoutray9206 2 года назад +1

    That last bit about distributed lock was useful 😎

  • @slamspam
    @slamspam Год назад

    outstanding video. great information & step-by-step demo. thanks

  • @olegholostenco8736
    @olegholostenco8736 2 года назад +5

    That is awesome. Thanks
    Please, make similar video about deadlocks with real examples in real projects

  • @ivandrofly
    @ivandrofly 7 месяцев назад

    7:31 - 2x Task

  • @AndersBaumann
    @AndersBaumann 3 месяца назад

    Nice video.
    If you are already using SQL server then you can use the Distributedlock library instead of Redis.

  • @josepvg
    @josepvg 2 года назад

    I love your videos, thanks for making them

  • @imtheshadow6396
    @imtheshadow6396 2 года назад +1

    Hey Anton, thank you for the awesome video, keep it up!
    I have a related question that confusing me, when we declare our services as scoped, does that means the .Net will separate contexts between scopes and eliminate racing conditions between them, so one scope will not enter another scope context?
    And if you could create a video explaining scopes/transients in the context of threadings and race conditions that would be awesome, thank you!

    • @RawCoding
      @RawCoding  2 года назад

      Cheers, scoped/transient doesn’t do anything for race conditions - it’s service lifetime it’s about which object you get

  • @t400ml
    @t400ml 2 года назад +2

    5:00 I'm still a bit uncertain as to why the Task.WhenAll isn't sufficient to have the number get to 1000 before the Console.WriteLine?

    • @RawCoding
      @RawCoding  2 года назад

      It is and isn't. If we do Task.Run it kicks off the process in parallel so that means it may execute the function before we schedule the next task, so on as so forth, if all tasks complete before we schedule the next task they will all complete sequentially

    • @numannebuni
      @numannebuni 2 года назад +2

      @@RawCoding I'm super confused too. I was expecting "await Task.WhenAll(tasks)" to wait for all tasks to complete and therefore the final result to be 1000.
      So what happens here is that when the for loop finishes, the "tasks" variable doesn't hold all tasks?

    • @RawCoding
      @RawCoding  2 года назад +2

      Task.Run places the function to run on a thread, you are scheduling a task, just because you wait for all the tasks to complete doesn’t mean they will all complete in order or won’t run over each other. If we schedule 1000 tasks faster than any of them start running, some may start at the same time and cause a race condition or they may all run sequentially, we don’t know.

  • @nadab.657
    @nadab.657 2 года назад +1

    Out of context, what's the keyboard using ? That sounded nice. : ) as always top video. Thanks for getting and keeping my job.

    • @ghostofalexandria8914
      @ghostofalexandria8914 2 года назад

      It is a keyboard with red switches. ;)

    • @RawCoding
      @RawCoding  2 года назад +1

      It’s keychron with brown switches

    • @tonyschoborg
      @tonyschoborg 2 года назад

      I like the browns as well, blue switches are too obnoxious.

  • @akbaraliotakhanov1221
    @akbaraliotakhanov1221 7 месяцев назад

    Nice job! I have an issue with production app. I need your advice. Now, I have a transient class which receives an update request. The request may be single or multi which means parallel tasks. Inside this class, I used a method to write some .json file and shut down the running up to continue update on the another local app. Here is the problem, in case multiple requests how can I avoid parallel threds using a specific method? I tried with semaphoreSlim and locks but it doesn’t work perfectly

  • @emreaka3965
    @emreaka3965 8 месяцев назад

    Thanks

  • @MrJonnis13
    @MrJonnis13 2 года назад +1

    Impressive ! Thank you Anton.
    At 12:15, could we bypass this effect by using *ConfigureAwait(false)* ?

    • @RawCoding
      @RawCoding  2 года назад +1

      No, threads processing the tasks would be blocked.

    • @MrJonnis13
      @MrJonnis13 2 года назад

      @@RawCoding so the 5 threads that processing the Tasks will be waiting the operation the finish, and even if the operation is done, there will be no available thread (since all are occupied) to finish up the initial Task.
      Did I get it right?

  • @salehdanbous6783
    @salehdanbous6783 2 года назад +1

    Regarding distributed locking, from what I saw people usually tend to use it to lock updating files and not concurrent database updates! When updating database would it be viable to use Distributed Locking? I heard some developers praise the use of FIFO queues like SQS, RabbitMQ and the like!

    • @RawCoding
      @RawCoding  2 года назад +1

      queues are a way to structure your application to avoid locking

    • @salehdanbous6783
      @salehdanbous6783 2 года назад

      @@RawCoding Do you think using Redis Distributed Locking would be ideal for solving database update collisions? From your perspective what would be the optimal way in a distributed architecture?

    • @RawCoding
      @RawCoding  2 года назад +1

      @@salehdanbous6783 I think if you design well, you might not need any locking, but generally it will be queues (actor model, which is queues on steroids)

  • @parapadirapa
    @parapadirapa Месяц назад

    11min45sec. I didn't get the threads congestion example... First it's 10 tasks. Then it's 5 threads... And only one is awaiting the task... But then you speak of 5 tasks. The tasks number magically gets cut in half. Could anyone please rephrase the example, please? Also didn't get why the threads are actually starving.. I thought the whole point of a lock was to avoid concurrent access to a resource (and in so doing, relieving threads of congestion, not increasing the congestion). Also starving and congestion seem like very confusing terms as they seem to refer to opposing concepts.

  • @CarrigansGuitarClub
    @CarrigansGuitarClub 2 года назад

    Good high-end topic, with suggestions for resolutions

  • @FXK23
    @FXK23 2 года назад +1

    What is the difference between using the semaphore vs. redis-conditional, assuming only one thread active on the protected resource?

    • @RawCoding
      @RawCoding  2 года назад

      Semaphore is process scoped, redis is distributed

  • @ivandomaranskiy4694
    @ivandomaranskiy4694 2 года назад

    Thank you

  • @expertreviews1112
    @expertreviews1112 2 года назад

    awesome content! separates men from the boys

  • @Kevmoens
    @Kevmoens Год назад

    I’m assuming interlock would work too.

  • @salehdanbous6783
    @salehdanbous6783 2 года назад

    I run into those usually when I have database update statements in my code.

  • @cocoscacao6102
    @cocoscacao6102 2 года назад +1

    Everything that inherits Stream class next please... :)

  • @sorinvasiliu
    @sorinvasiliu 2 года назад

    awesome content, gg!

  • @caglarcansarikaya1550
    @caglarcansarikaya1550 2 года назад

    thanks for it. I learnt semaphore and mutex :) why you didn't try Concurrent something is there any solution with it? I would like to try, I have just finished the video :)

    • @caglarcansarikaya1550
      @caglarcansarikaya1550 2 года назад +1

      and
      Parallel.For(0, 1000, (i, state) =>
      {
      number++;
      });
      this one is gives the 1000

    • @caglarcansarikaya1550
      @caglarcansarikaya1550 2 года назад

      that really interesting I have tried with concurrentbag and concurrentqueue and both of is messed up also I have tried with arrays, there is no difference

    • @caglarcansarikaya1550
      @caglarcansarikaya1550 2 года назад +1

      I also understand the mutex, Mutex works as await when it finished I saw many various values smaller than 1000 on the doc.
      I didn't understand one thing, appreciate this video and I also watched your async await video some time ago and still I remember how it works. Normal for loop finished in 1.2 sec by writing a file, async threads finished in 4.5 sec. Why should we use async threads? it works slower than the sync

    • @RawCoding
      @RawCoding  2 года назад

      not sure how you measured, but sync is faster than async. And you use async to avoid blocking, if you don't have async you have to use locks and threads.

    • @caglarcansarikaya1550
      @caglarcansarikaya1550 2 года назад

      @@RawCoding yes I found same results, sync is faster. :)

  • @obsidian741
    @obsidian741 2 года назад

    Hi Anton, what IDE are you using in this video?

    • @tonyschoborg
      @tonyschoborg 2 года назад

      It is Rider by JetBrains. Not free, but worth every penny.

    • @obsidian741
      @obsidian741 2 года назад +1

      @@tonyschoborg Hey Tony, could you provide some of the nice features VS doesn't have while Rider has? I know ReSharper and want to know more about it.

    • @RawCoding
      @RawCoding  2 года назад

      It's Rider, they have a trial you can try it out

    • @tonyschoborg
      @tonyschoborg 2 года назад +2

      @@obsidian741 Some things more objective and trivial. Looks, colors, etc. I really like the new cleaner UI.
      I originally switched when my VS was bugging out and I could not rename variables, it would just crash. spent better part of a day updating, reinstalling, restarting before I downloaded Rider.
      The biggest thing for me is spell check. And not only for comments and log messages, but even variable and class names.
      Also much better code analysis. there are a few things that Rider picked up on we could do better after we switched. A lot better options to refactor, as well.
      There are a lot of things that you will get from Resharper, if that is the route you go.

  • @BenChengnz
    @BenChengnz 2 года назад

    I wish I was as smart as you! 😂

  • @nutcracker6746
    @nutcracker6746 2 года назад

    Are you using Linux?

  • @alperkaya8919
    @alperkaya8919 Год назад +1

    I respect your knowledge and expertise, but first example is totally wrong.
    var resource = 0; // Copy value 0 to resource variable
    var worker1 = resource; // Copy value 0 to worker1 variable
    var worker2 = resource; // Copy value 0 to worker2 variable
    worker1++; // Increase 0 by 1 and copy it to worker1, which is 1
    worker2++; // Increase 0 by 1 and copy it to worker2, which is 1
    resource = worker1; // Copy value of worker1 to resource, which is 1
    resource = worker2; // Copy value of worker2 to resource, which overwrites the assignment above, which is 1
    Console.WriteLine(resource); // Of course it will output 1, I really wonder what did you expect?
    I am ashamed of myself for explaining this concept as if it is not known already, but:
    C#, passes value types by copying their values, not their references. In this context, you cannot directly use resource variable. You can only copy it's current value. This is why you cannot get a race condition out of this.

    • @RawCoding
      @RawCoding  Год назад +1

      The example is meant to illustrate what happens in parallel, but un a synchronous manner. So when I named things “worker” they are meant to represent 2 different processes grabbing the same resource at the same time, if they both read the same value and then write back the same value a race condition occurs.

  • @GebzNotJebz
    @GebzNotJebz 6 месяцев назад

    you've only explained half the topic, you've shown the problem but not the solution

  • @nekoill
    @nekoill Год назад

    Lmao, that Java ripoff's compiler can't even detect race conditions?