Here's Why Node JS is NOT Single Threaded

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

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

  • @devorein
    @devorein 3 года назад +13

    The breadth of topics you cover is jaw-dropping. Always look forward to your videos.

  • @mayursonawale475
    @mayursonawale475 3 года назад +5

    This is really perfect and detailed version of background processing while using node js.
    Saw it once, now it's printed in my brain 🔥.
    Thank you so much for this video and looking forward a great learning curve with you.

  • @indurkar4338
    @indurkar4338 3 года назад +2

    The explanation you give for everything including NodeJS Multi Thread, CORS, Networking Basics etc is Amazing. Due to your videos I can understand these concepts clearly. Keep making such wonderful videos for us.

  • @enlightened3945
    @enlightened3945 3 года назад

    This is too good! I have recently been watching your videos. Thanks and respect to your hard work.

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

    Amazing video. Loved it to the “core”

  • @jijin2450
    @jijin2450 3 года назад +4

    I watched this video till end 🏃🏃🏃

  • @FaruqHameed-sl9gq
    @FaruqHameed-sl9gq 2 года назад

    I watched this till the end. Thanks

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

    I watched this video till end. Great content.

  • @daimoncardenas5074
    @daimoncardenas5074 3 года назад

    You are expert in Javascript. Thanks Engineer. Regards.

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

    This is exactly what I was thinking... Thank you so much

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

    Astonishing explanation..

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

    if the Libuv thread pool gets hold of all the cores in our system, how does a separate nodejs process like cluster or pm2 instance run a different process with its own libuv thread pool and main thread ??

  • @anuraghazra4772
    @anuraghazra4772 3 года назад +1

    Underrated channel. 🔥

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

    This concept seems more like what nodejs provides as worker threads for a compute heavy system. Is the concept same for IO intensive tasks as well? My question is which part exactly is responsible in os watching for a db query to be fulfilled?

  • @subhankardas7207
    @subhankardas7207 3 года назад

    Awesome !!
    Thanks a lot !
    " I watched this video till the end "

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

    for example 500 request comes....and each has to perform 10 task and some task's code may be synchronous and some task's code is asynchronous......as node js is single threaded it will put of all the request in a queue..it takes out 1 request and that request is to run 10 task .....out of which say 4 task'code are asynchronous so that 4 task command will go to thread pool right?....remaining 6 task is performed and result is generated.....now when the 4 lines asynchronous task result is generated the all 10 task result is clubed and response is send ...then for request 2 same thing happens.....so why we say node js can handle multiple request at a time.......or is it like when request1 6 sync task is completed......the other 6 task of request 2 starts to get executed even though request 1 4 async task has not completed so node js is making the request run concurrently and not parallely this shows the single threading nature....if for suppose node js might have been multi threading that we could have access multiple request parallely......am i getting it correct?

  • @arvindshelke8889
    @arvindshelke8889 3 года назад

    I watched this video till end.
    Came to know about libUV👌👌

  • @arpanghoshal2579
    @arpanghoshal2579 3 года назад +3

    Great explanation.
    Does this only happen for something like a C++ binary? Can I make use of multithreading when writing normal javascript code in node js, I believe when we use promises it just uses the event loop which is concurrent but not parallel so it is still utilizing only a single core of our cpu.

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

      Just learn Go
      (With a grain of salt)

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

      @@electrolyteorb Yes Go lang is great, though I haven't used it yet. I mainly work with Elixir which is very good at concurrent or parallel processing.

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

    Thank you so much this must be relevant with all Web server : instances configurations.

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

    Wouldnt be better initialize more node workers with less libuv threads to better utilization of processor for parallel requests processing priority?

  • @rohan1765
    @rohan1765 3 года назад +1

    I watched this video till the end.

  • @bhavinpatel1425
    @bhavinpatel1425 3 года назад

    As 1 request take 1 second for process + 1 second for callback = total 2 second. What about 500 request, for this example as we have 4 thread OS. What is total time to complete the execution for 500 request?
    Could you please assist for this?
    Thank you.

  • @munishthakur8018
    @munishthakur8018 3 года назад

    Wonderful Explanation!

  • @Atif1702
    @Atif1702 3 года назад

    who will be placing the requests in thread pool to cores? Thread Pool or Scheduler?
    Because in the diagram you made, it shows that thread pool is putting it on cores.

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

    Awesome Explanation

  • @andreigatej6704
    @andreigatej6704 3 года назад +1

    Thanks for the great video.
    Did you actually dive deep into libuv's source code? Would be very interesting to see some videos where one points out how things really take place under the hood.

  • @jayjani740
    @jayjani740 3 года назад +1

    Your explanation is pretty much clear for me. Thanks alot :)
    Can I get some animated stuff of these process?
    Would really help me and others like me alot. :D

  • @firdousProgrammer
    @firdousProgrammer 3 года назад

    We have now async in python as well. FastAPI works somewhat similar to the Node js.

  • @HimanshuChoudhary-smartfire
    @HimanshuChoudhary-smartfire 3 года назад

    I always watch 👀 your video till the end.

  • @abhishekvishwakarma9045
    @abhishekvishwakarma9045 3 года назад

    Great content as always ✌🔥

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

    Great explanation ❤️

  • @Growlboy1986
    @Growlboy1986 3 года назад

    I watched this video till the end :D

  • @justcurious1349
    @justcurious1349 3 года назад

    Really nice content man... 👌

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

    Nice, thank you!

  • @Raj_Vishwa1
    @Raj_Vishwa1 3 года назад +1

    Mehul Sir same Content Post in Hindi also here or in ur Mehul Mohan Channel it will definitely Boost both Channel's 🔥🔥🔥

  • @maacpiash
    @maacpiash 3 года назад +1

    Node.js itself is not single-threaded. The Javascript program that we write to run on Node.js is single-threaded.

  • @shashankkr1008
    @shashankkr1008 3 года назад

    Watched this till the end

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

    Thanks man ❤️

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

    But this is about bcrypt which executes on a c++ binary. Can you please tell how do JavaScript inbuilts, like promises specifically work. Suppose there are 5 promises.... ho do these 5 promises get executed parallelly ? @codedamn

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

      All the async ops including promises get offloaded from node main thread which is basically running v8 engine.
      You have to understand that async ops usually involve low level tasks . If you take a network call , you have to access the network card of the hardware. all these go to the libuv thread pool which executes them just like bcrypt. Once done they come to the callback queue and event loop pushes them to main thread one by one.
      Also we have to remember
      Nodejs works by concurrency
      Libuv works by parallelism

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

      thank you so much for the explaination
      @@eswarprasad9773

  • @sumer9999
    @sumer9999 3 года назад

    Hey the JS main thread is still single and if that's stuck in processing your event loop would be stuck and whole application would either be stuck or crash.

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

      Thats why you never write data intensive ops on the main thread,
      You can spawn a worker thread for you do it and share the data with parent. If its async you anyway will pass it to libuv or web api in case of a browser

  • @JafferAliTalks
    @JafferAliTalks 3 года назад +1

    I watched videos till end

  • @programmersoham
    @programmersoham 3 года назад

    I watched Till the End really informative video

  • @shashikantkalshetty
    @shashikantkalshetty 3 года назад

    Watched till the end

  • @yveszavel6234
    @yveszavel6234 3 года назад

    Watched to the end

  • @bramlachat2515
    @bramlachat2515 3 года назад

    I watched this video till the end

  • @bhumit070
    @bhumit070 3 года назад

    Hey nice explaination , can you make long videos like hussein ?

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

    Thank you!

  • @S16-n7f
    @S16-n7f 3 года назад

    I WATCHED THIS VIDEO TILL THE END

  • @chrisplusplus6232
    @chrisplusplus6232 3 года назад

    i remember a twitter argument similar to this few weeks ago from oliverjumpertz

  • @hellofriend3091
    @hellofriend3091 3 года назад

    Please cover middleware

  • @himanshulal97
    @himanshulal97 3 года назад

    Sir teell mee from where did u got this much in depth Concept, I must say I been working with node for two years but do not got that this deep apology that took behind the scenes 😀😀😀 sir plz 🙏 refer me some this that could connect me to that level of deepness and personally I felt something is missing and by this video I come to know that there's a lot more to learn in node 😀😀😀 plz refer some book wher u prefer to have this much deep Concept...

  • @donmikkodanm.olmillo8154
    @donmikkodanm.olmillo8154 3 года назад

    I WATCHED THIS VIDEO TILL THE END! 😊

    • @donmikkodanm.olmillo8154
      @donmikkodanm.olmillo8154 3 года назад

      so basically, the more CPU cores you have the more libUV can schedule it to each core?
      16 cores = 16 hashing process it can take in parallel?

    • @codedamn
      @codedamn  3 года назад +1

      correct

  • @muhammedladeed2280
    @muhammedladeed2280 3 года назад

    i watched this video till the end

  • @rafarolsky7522
    @rafarolsky7522 3 года назад

    just great :) thx

  • @soorajs577
    @soorajs577 3 года назад

    I watched full video

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

    Great explanation, but the background music is really annoying

  • @vmmoorthi
    @vmmoorthi 3 года назад

    I watched till end

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

    Nice!

  • @DebdutBiswasOnline
    @DebdutBiswasOnline 3 года назад

    awesome

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

    great

  • @muhammedladeed2280
    @muhammedladeed2280 3 года назад +1

    👌👌

  • @cloud_architector
    @cloud_architector 3 года назад

    Nice

  • @himanshulal97
    @himanshulal97 3 года назад

    And video ends soon didn't noticed 🤣🤣🤣

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

    I recommend you remove the background music.

  • @samhanna7382
    @samhanna7382 3 года назад

    Have some sleep tho

  • @Hackkit
    @Hackkit 3 года назад +1

    What a sad face wala kidding ismail ...!!!

  • @amolchourasia6180
    @amolchourasia6180 3 года назад

    I watched this video till end.

  • @puneetsingh9678
    @puneetsingh9678 3 года назад

    I watched this video till the end