Тёмный

Java Concurrency Interview - What is an Ideal Threadpool size? 

Defog Tech
Подписаться 85 тыс.
Просмотров 62 тыс.
50% 1

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 123   
@adame26
@adame26 3 года назад
It's been a while since your last video! please share your knowledge again, you have a very good way of explanation. you might as well do udemy courses or create a paid courses on your youtube channel
@dishithpoojary
@dishithpoojary 4 года назад
Hey the channel is amazing! Just wanted to know when will you start uploading new videos?
@dmitrikonnov922
@dmitrikonnov922 3 года назад
Your explanations are amazing. I believe, you ARE the gift given me for all the efforts I made before by learning Java and Spring :D . Thank you a lot!
@shachindrapandit6040
@shachindrapandit6040 4 года назад
what an explanation brother, really good, clear and very helpful .. thanks a ton!!
@peeyar2000
@peeyar2000 5 лет назад
Wow... A very complex topic in a very simple way...Love you man.
@SreekarAnugu
@SreekarAnugu 3 года назад
For people who don't have patience: The answer is: it depends on whether the task is CPU intensive or IO intesive. If it's CPU intensive, it is = number of cores, if it's IO bound, it is = depends on how much time the IO intensive task is eating on CPU. Usually much more than the number of cores.
@TKNDevCorner
@TKNDevCorner 4 года назад
Hi Defog Tech , thanks for the tutorials ! Could you make videos (even better if a playlist of tutorials) about advanced topics and real-life examples about Maven ? For example, releasing of projects with complex versioning, git/jenkins/artifactory integration etc... Any intermediate - advanced topics would be very much appreciated. Online tutorials nowadays about maven only cover very basic concepts and they are all the same (e.g. dependencies ... everyone knows about it).
@prateekkanujiya9775
@prateekkanujiya9775 5 лет назад
This word would not enough but please take it as appreciation far beyond : AWESOME
@creatingwaves
@creatingwaves 4 года назад
Amzing content. Provides great clarity. Please do a series on the design patterns. And object oriented design like designing a parking lot.
@sayyedyasin7646
@sayyedyasin7646 4 года назад
Hello Defog Tech Thanks for the clear and candid explanation. PFB, one of the formulae for ideal number of threads. #of Threads
@rizwanfirdous
@rizwanfirdous 5 лет назад
Excellent 👌 explanation. Please do more videos on java concurrency. Also my suggestion is it would be great if you create videos which covers java concurrency book with your animation and explanation Thanks again
@harry12200
@harry12200 3 года назад
Please start making videos again. Your videos are very informative and easily understandable. Hope to see you soon making videos.
@mostinho7
@mostinho7 3 года назад
Done thanks CPU bound tasks (no blocking) pool size is number of cores 7:30 IO bound task diagram 11:30 Formula for number of cores wait time is how much time the thread is in wait state, and cpu time is how much time the thread spends executing For example, if the task executes for 1 second and 0.5 seconds of that is blocked on IO, then ideal thread count will be if we have 1 core 1(1+ (0.5/0.5)) = 2 threads What if the task blocks longer? Say total execution time 1 second but 0.8 blocked Ideal thread count = 1*(1+(0.8/0.2)) = 5
@nunu-ej6to
@nunu-ej6to 3 года назад
Best explanation I have heard. But how do I estimate the CPU time and Wait time accurately ?
@kumarc4853
@kumarc4853 4 месяца назад
learned a lot, useful to tlak about these things for any lowlevel design discussion, staff eng level experience gained!!!
@mozifbeigh1838
@mozifbeigh1838 2 года назад
Thanks for the Video. Just curious about scenario for I/O tasks scenario if the I/O is non-blocking IO(In above Video it is assumed I/O is blocking I/O). It just appears in that case increasing the size of threadpool may not give any benefit as the thread will need not to wait for I/O in non-blocking scenario and can take up another task in meantime and even one thread (in single core machine scenario ) may suffice .
@reductor_
@reductor_ Год назад
13:31 "L1/L2 etc need to be flushed during a thread switch", while it's architecture specific this is only needed for switching between processes, however if switching between different threads in the same process they share the same address space, so no flushing is needed (ignoring relevant fences). Also it the L2 cache is shared between multiple cores and wouldn't be flushed however the TLB and L1 potentially are.
@kevinding0218
@kevinding0218 Год назад
Great explanation! What if we have multiple threadpool instead of just one single threadpool in an application, can each still have same coreThreadSize?
@dataguy7013
@dataguy7013 2 года назад
Wow, best explanation ever, Thank you
@BimalModak
@BimalModak 3 года назад
Looks like this is your last uploaded video on this channel. Why you have stopped creating these awesome tech videos? Is everything alright bro?
@harishkumarrayasam
@harishkumarrayasam 3 года назад
Is there an overheard of creating a threadpool rather than using the java system threads using completablefutures?
@karinachavarin7296
@karinachavarin7296 3 года назад
Why did you stop making videos, these are so helpful..
@subbu6647
@subbu6647 4 года назад
Simple explanation ! Golden stuff! Thanks
@fakruu
@fakruu 3 года назад
Please continue posting videos. Not everyone can explain complex concepts in a simple manner.
@angNguyen-bc8ge
@angNguyen-bc8ge 2 года назад
Waiting for new videos from your channel
@voiceguy554
@voiceguy554 2 года назад
It has been a while since we got new tutorial from you. Hope you are doing fine.
@harishsure9562
@harishsure9562 Год назад
writing data into a file is a CPU IO operation right?
@rahulchandrabhan
@rahulchandrabhan 3 года назад
Super video! I applauded for ₹40.00 👏
@AleksandarT10
@AleksandarT10 3 года назад
Where did u go Defog Tech? please come back
@anthonya880
@anthonya880 2 года назад
You are one of the best tech youtubers. Please come back to youtube.
@5amyak
@5amyak 2 года назад
How to calculate the wait time and CPU time of a task ?
@dimasnaresh8268
@dimasnaresh8268 4 года назад
Sir, could you please make video about differences between embeded server and standalone server at performances aspect in Java ecosystem ? I love the learning more deep about that and how it takes benefit for microservice architecture
@dipenmavani4404
@dipenmavani4404 2 года назад
Great explanatory video 👍👍
@LivenLove
@LivenLove 3 года назад
Hi I have been following your videos since few years now, and have started reading JCIP book for further clarity. Ny question is, Do programmers of bigdata field too need to understand concurrency?? Or is it handled by the latest frameworks like spark storm etc
@DefogTech
@DefogTech 3 года назад
For BigData processing I dont think understanding of Java concurrency is necessary. You might need to understand concurrency in general at data flow level, but not in-depth like these tutorials.
@paprikar
@paprikar 2 года назад
An alternative formula for the number of threads would also be: N = CORES * (ALL_TIME / CPU_TIME), where ALL_TIME is just IO_TIME + CPU_TIME.
@johnathanrice3569
@johnathanrice3569 Год назад
All time is IO time plus CPU time plus other thread time. The more thread you run the more time you’ll get scheduled for each threads overall. Instead of 1/1000 you’ll get 100/1100 all things else considered equal
@Rahul-pr1zr
@Rahul-pr1zr 2 года назад
Great explanation. I had a question - what happens if a method has both IO and CPU bound operations? Does IO bound operation take precedence over CPU bound operation?
@DefogTech
@DefogTech Год назад
I didnt fully understand. If method has sequential code it will be executed in that sequence irrespective of whether its IO or CPU bound. At a kernel level too, threads are given equal opportunity to run and I dont think IO vs CPU is a scheduling factor.
@uka0002
@uka0002 4 года назад
Wow .. great respect for your way of teaching and knowledge...Do you have any courses in Udemy.. I’ll buy it...
@DefogTech
@DefogTech 4 года назад
No courses as of now Uday, might start RU-vid memberships if there is enough interest
@asthiwanka
@asthiwanka 5 лет назад
One of the best explanations for thread pooling I have seen so far which many have failed to do. It would be great if you can extend the discussion on how hyperthreading works along with thread pools.
@DefogTech
@DefogTech 5 лет назад
Good idea... I want to explore hyperthreading concept, might do separate video on it
@PA-vf5st
@PA-vf5st 3 года назад
Nice Video....Can you pls explain the Thread/Core management in Cloud environment where core size can be in millicores....
@ramkumar_balu
@ramkumar_balu 3 года назад
Pls continue uploading new videos.. The channel is idle, you should continue.. it is really amazing..
@shashanksingh4708
@shashanksingh4708 Месяц назад
Awesome explanation !
@mandeepsharma8305
@mandeepsharma8305 3 года назад
I think you should appear sometimes in videos person talk to your students. It will surely help your channel. It's been a year You have not uploaded any videos. I think you have potential to become next java brains. I hope you start uploading as project reactor is maturing and I don't see anybody else who could teach devs write non blocking code. Or you can jump into gRPC. Thank you for for all these efforts. Start coming live turn on the super chats. Join button won't help it is more of commitment and you know commitments.
@Dipubuet
@Dipubuet 2 года назад
Really really helpful video!!!
@manoranjanm1384
@manoranjanm1384 3 года назад
Hello Sir, your explanations r very pin point, please upload some Design patterns best practices and application level Exception hanndlings . SSL usage rest security like basic, oath , encryption realtime usage in microservices and normal projects
@ranawareviraj
@ranawareviraj 6 месяцев назад
Now I understand it :)
@tom_see
@tom_see 2 года назад
amazing, this is such a good explanation, very simple and clear. No wasted time. Thank you!!!
@johnathanrice3569
@johnathanrice3569 Год назад
This advice is true if it assumes that there are no other threads running on the computer computer but of course there are thousands of threads running typically or at least hundred and so the more threads you allocate the more the scheduler gives time to your application. In addition to increasing the nice number / priority
@DefogTech
@DefogTech Год назад
Agreed. Though its more true during development and testing where you application is running with many others. For production though, even with containers typically the application has fixed set if resources assigned and the sharing is minimal
@RahulSharma-ir6bg
@RahulSharma-ir6bg 3 года назад
Your videos are short and sweet. If you have some time to spare with us, I expect rx Java from you. Thanks.
@MrMikomi
@MrMikomi 4 года назад
Wondering how to find out the wait time and CPU time 🤔 Maybe jstack can help...not sure
@shellindebted5328
@shellindebted5328 5 лет назад
Sir, that's another Masterpiece from you...Thanks !
@AdilTheHAckerUnknown
@AdilTheHAckerUnknown 5 лет назад
We would love to have live Q&A if possible
@KunalKishoreSharma
@KunalKishoreSharma 3 года назад
Nicely explained, thanks for the video 👍👍
@vikaskokae
@vikaskokae 4 года назад
For IO bound tasks, we can have more threads in the pool for a fixed number of CPU cores. In real life scenarios, have you performed trial and error to arrive at the ideal count of threads, by observing the average wait time for such tasks?
@9467889975
@9467889975 3 года назад
Awesome explanation, just a view you may add memory usage of the task as an important parameter in the formula because it is one of the essential factor which restrict us in number of threads. Also you may add some explanation like what will happen if you try to start 1000 threads but fixed number of parallel threads are only 10. Mean will CPU keep them in memory or what would be the scenario. Other than this i felt its a very good explanation. :)
@nareshnegi7535
@nareshnegi7535 2 года назад
best explanation i have come across so far on threadpool and its dilema. I spent last one week reading windows via c trying to understand what you explained here in under 15 mins. Thanks a lot.
@zackzhu9865
@zackzhu9865 Год назад
This video has the clearest explanations around this topic from what I have ever watched!
@DipannitaShil
@DipannitaShil 4 года назад
All your videos are very informative and insightful. Wish you'd make more such videos!
@ilashree6235
@ilashree6235 4 года назад
Wow, thanks a lot for making such informative videos
@sudeepsinha9379
@sudeepsinha9379 4 года назад
Amazingly explained, wonderful job
@subhasispanda9000
@subhasispanda9000 5 лет назад
can you make videos how threads contribute to L1/L2/L3 cache memory. give some practical scenarios.. thanks for this nice videos..
@mysavingclub
@mysavingclub 3 года назад
excellent video. I was searching from long time
@stephyjacob1256
@stephyjacob1256 4 года назад
@Defog Tech what happened man? you are not posting any more videos .
@SuccessToSamadhi
@SuccessToSamadhi Год назад
Thank you
@ramp4409
@ramp4409 4 года назад
Confused ... but i know you are explanations are good
@ashvajitchauhan608
@ashvajitchauhan608 5 лет назад
Thanks for amazing explanation, pls upload videos for spring
@tombert512
@tombert512 3 года назад
These really are excellent videos. I've been a software engineer for almost a decade now, and while I more or less understand concurrency theory for distributed systems (well, as much as anyone CAN understand it :) ), I will admit that I never really bothered learning much about low-to-mid-level multithreading. These videos are easy to follow, well presented, and provide a lot of "bang for your buck" time-wise.
@VikasSharma-io5ip
@VikasSharma-io5ip 3 года назад
Tremendously awsum explanation.
@pramodjalindra5414
@pramodjalindra5414 3 года назад
Let's suppose I have hit the post api and saved the data in db via jpa ... Now I am using back button and resubmitting the request again 3 time and each times data is pushed in db ..and I don't want to insert resubmitted data in the table , could you please tell me how we can achieve this TIA 😊
@DefogTech
@DefogTech 3 года назад
you should use an idempotency key which is hash of the data being inserted, and set unique constraint within DB itself. this should not be handled at code level IMO
@pramodjalindra5414
@pramodjalindra5414 3 года назад
@@DefogTech thanks let me try 😊😊
@avinashsakroji1811
@avinashsakroji1811 3 года назад
Nicely explained
@VikiSangani
@VikiSangani 5 лет назад
Very nice explanation, pls keep sharing such exclusive knowledge. Thank you.. Awaiting for more such videos. Thanks once again. 👍
@dineshchandgr
@dineshchandgr 3 года назад
Wow! Amazing explanation.
@afifkhaja
@afifkhaja 4 года назад
Extremely good explanation. Let's say I have 2 cores and I create a thread pool of size 2. That means I have the main thread plus 2 child threads = 3 threads total, right? Why isn't the main thread being taken into account in your calculations? Thanks
@DefogTech
@DefogTech 4 года назад
AFAIK, in webservers in addition to main-thread there are lot of other threads (eg: GC thread). Have used only request accepting/processing threads in this example to keep it simple.
@linkin324
@linkin324 2 года назад
Excellent explanation, loved the nuances and detailing
@nrk7772
@nrk7772 3 года назад
What happened this channel and why that LinkedIn profile is missing 🤔
@DefogTech
@DefogTech 3 года назад
fixed the linkedin URL, thanks for notifying! planning to create more videos soon :)
@Nikhil-mu9ol
@Nikhil-mu9ol 2 года назад
@@DefogTech Please come back with new videos. Hope you are doing well.
@TrulyLordOfNothing
@TrulyLordOfNothing 4 года назад
I don't know if you realize it but you're content is great. I hope more poeple press the applaud button that supports you monetarily. Please continue making videos.
@GauravSingh-ov9mh
@GauravSingh-ov9mh 4 года назад
The best ever video on thread. Looking forward to more videos. 👍
@kamakhyadas6121
@kamakhyadas6121 4 года назад
Very well presented and explained. Keep up the good work!
@akhileshguptaakhi
@akhileshguptaakhi 4 года назад
Sir, what about file operation tasks such as PDF/Excel report creation, is it a CPU intensive or IO-intensive? My guess would be IO intensive
@DefogTech
@DefogTech 4 года назад
creating the format in-memory would be CPU intensive, and post that writing to the disk would be IO
@pdteach
@pdteach 4 года назад
Thanks for such a nice explanation
@algorithmimplementer415
@algorithmimplementer415 5 лет назад
Excellent - so much relevant content in less than 15 mins.
@akashshirale1927
@akashshirale1927 3 года назад
u r that famous guy on leetcode
@大盗江南
@大盗江南 4 года назад
All my respect Sir! Plz continue :)
@bahaagamal4995
@bahaagamal4995 4 года назад
perfect ...thank you
@mildtime8146
@mildtime8146 4 года назад
Really nice explanation !!
@updownftw
@updownftw Год назад
I have one confusion: how many types of thread are there ? I know there are threads related to cpu, then there are probably os threads, and then there are java threads. How do they relate to one another ?
@DefogTech
@DefogTech Год назад
Behind the scenes everything is a thread of same type. Every process, whether its OS utilities or applications or services, work using threads. I am sure there are commands for every OS which lets you find how many threads each process is using. Try that out for various types of applications. There are no threads related to CPU AFAIK.
@updownftw
@updownftw Год назад
@@DefogTech Thankyou for your reply Deepak. So when a processor says i9 8 core and 8 threads. That means they are saying 8 things can run parallelly on those 8 cores at at time ?
@DefogTech
@DefogTech Год назад
@@updownftw yes, correct. 1 thread per core. Note: There is a feature in both Intel and AMD CPUs called SMT which allows 2 threads per core, but even that is not technically concurrent, and its disabled generally due to recent vulnerabilities.
@updownftw
@updownftw Год назад
@@DefogTech Ok, thanks Deepak 👍🏽
@solorankerone
@solorankerone 5 лет назад
Thank you very much for the video 😁
@gurusravankallubhavi3714
@gurusravankallubhavi3714 3 года назад
You are a gifted teacher!
@sreejiths8159
@sreejiths8159 4 года назад
Hi, I am very new to the java concurrent programming. Your playlist have helped me a lot in understanding the basics. Thank you so much for giving such a simple explanation. I have a doubt regarding thread count calculation, suppose there is a system which need to get some large number of customer data of from DB/System (ie IO operation) and want to process, validate (ie CPU intense operation) data of each user and update the validation status back to DB/System (ie IO operation). How should I calculate/ design the thread count? Please correct me if I am wrong about the scenario. Thanks in advance.
@DefogTech
@DefogTech 4 года назад
Good question. It depends on how much time it takes for read IO operation to complete which will define rate of incoming tasks and how much time the CPU intensive operation takes which will define how many of these tasks can you run in parallel (at a time). So if CPU intensive task takes 10ms, then you can have max N of such tasks, where N = Number of CPU cores.
@sreejiths8159
@sreejiths8159 4 года назад
@@DefogTech Got it . That make sense.Thank you for the explanation.
@ArjunSingh-hr8iz
@ArjunSingh-hr8iz 4 года назад
one of the beat video tutorial in short time in easy way
@divyangshah99
@divyangshah99 5 лет назад
Awesome video!!! Enlightening
@yadegaSabre
@yadegaSabre 5 лет назад
Thank very good explained!
@sarthakkanungosar
@sarthakkanungosar 5 лет назад
Can you please add a video for it?
@parvezmd6455
@parvezmd6455 5 лет назад
sir,explan the process,thread,task term with real time examplr.confuse alot. thank u
@sireesham4208
@sireesham4208 5 лет назад
Process: A process is an instance of a computer program that is being executed. It contains the program code and its current activity. Depending on the operating system (OS), a process may be made up of multiple threads of execution that execute instructions concurrently. Process-based multitasking enables you to run the Java compiler at the same time that you are using a text editor. In employing multiple processes with a single CPU,context switching between various memory context is used. Each process has a complete set of its own variables. Thread: A thread is a basic unit of CPU utilization, consisting of a program counter, a stack, and a set of registers. A thread of execution results from a fork of a computer program into two or more concurrently running tasks. The implementation of threads and processes differs from one operating system to another, but in most cases, a thread is contained inside a process. Multiple threads can exist within the same process and share resources such as memory, while different processes do not share these resources. Example of threads in same process is automatic spell check and automatic saving of a file while writing. Threads are basically processes that run in the same memory context. Threads may share the same data while execution. Thread Diagram i.e. single thread vs multiple threads Task: A task is a set of program instructions that are loaded in memory.
@anurag9110
@anurag9110 4 года назад
Great explanation
@ashvajitchauhan608
@ashvajitchauhan608 5 лет назад
Please upload more videos
@sagarshekhar6296
@sagarshekhar6296 5 лет назад
I always got confused when I was asked this question in interviews........Thanks for elaborating it........Excellent explanation...
@sripolisettys
@sripolisettys 3 года назад
Perfect!!
@AleksandarT10
@AleksandarT10 5 лет назад
Please do more videos
@sarthakkanungosar
@sarthakkanungosar 5 лет назад
What is consistent hashing?
@pulkitgupta8696
@pulkitgupta8696 4 года назад
Wow...
@kelvinpage4647
@kelvinpage4647 4 года назад
Impressive
Далее
Introduction to CompletableFuture in Java 8
19:34
Просмотров 326 тыс.
What is Spring Webflux and when to use it?
17:46
Просмотров 243 тыс.
Вопрос Ребром - Серго
43:16
Просмотров 1,4 млн
ThreadLocal in Java
10:59
Просмотров 185 тыс.
Semaphore in Java Concurrency
9:40
Просмотров 110 тыс.
CONCURRENCY IS NOT WHAT YOU THINK
16:59
Просмотров 101 тыс.
Thread Pools in Java
18:04
Просмотров 67 тыс.
Java ReentrantLock - fairness, tryLock and more
13:17
Просмотров 133 тыс.
The Value of Source Code
17:46
Просмотров 40 тыс.
Java ExecutorService - Part 1 - Introduction
10:12
Просмотров 417 тыс.
Java ExecutorService - Part 1
20:56
Просмотров 54 тыс.