In the last many years, I was trying to understand these topics and never understand them fully, unless used some of them in projects. Your videos are awesome. You made videos with topics which are hardest to understand and in a so simple way that I never found before. Thanks a lot. You saved lot of us.
@karandua98484 жыл бұрын
Watched your ExecutorService series, now came to this one. Really needed this set of videos. Nobody could have explained these concepts in so less time! SAVIOUR.
@aaravpilligundla52704 жыл бұрын
Complex concept(MULTI THREADING) is explained in much simpler way, where an average . like me can also easily understand all the multithreading concepts...If anyone wants to master multithreading, these videos will help a lot..Great job bro..
@jineshsanghvi14 жыл бұрын
I have 2 questions - 1. One of the thread (from the thread pool) pick the main task from the common queue and breaks it into subtasks and stores on its own local Deque. It then process each subtask in squence. In that case there is no parallelism involved but there is over head to break the main task into subtasks and then later joining the results (when no work stealing involved). This will be an over head. Aren't we better off just to execute the main task in whole ? 2. In the earlier part of the video, you mentioned that the main task is split into subtasks and these subtasks will run in parallel on different cores. In that case where is the local Deque involved ? Or is that the sub tasks will run in parallel on when other thread has no other main task to executed (no other task in the common queue)... Work Stealing. Overall , its a good vidoe and i have gone through all you other videos. Easy to understand both with language and graphics. Commdendable job!
@batmanish4 жыл бұрын
As far as I understand, you don't want to execute the main task as a whole, since you can perform fib(n-1) and fib(n-2) parallely. There are 2 cases: 1. Say all threads are busy, if you use ForkJoinPool, even though you don't get parallelism, you still can still leverage data locality benifits, if you don't use forkjoinpool the subtasks might go to different Thread and you don't benifit from data locality. In this case since all threads are busy, there was no way to leverage parallelism so atleast we were able to leverage data locality. 2. Say some threads are idle, and thread1 is busy and has lots of subtasks in it's local queue, other threads can take up these tasks(stealing) from local queue and leverage parallelism (We loose up on data locality but that's okay we get parallelism). So in both these cases we were able to get some optimization (data locality or parallelism). Thus using ForkJoinPool makes sense.
@chanderprakash43435 жыл бұрын
Seriously i really appreciate your work and the way you simplified all these concepts.
@bharathashok99655 жыл бұрын
Please provide a working programming example of ForJoinPool. Thanks for sharing knowledge.
@subramanyamsattenapalli47205 жыл бұрын
The way of explanation is simply superb. Any one can easily understand.
@berndeckenfels Жыл бұрын
Great intro. The return with task1.join()+task2.join() does not free the calling task, forcing all other subtasks to be stolen. Might be a good topic for optimizations video.
@narayanadhurti16032 ай бұрын
Splendid and Explanation with an intoxicating voice.
@kimsung23845 жыл бұрын
Bro - that was a cool video. I also watched your ExecutorService one which was great!
@DefogTech5 жыл бұрын
Thanks buddy
@manjuwadhwa80802 жыл бұрын
Please make more such videos focusing interview topics...your videos are quick and to thenpoint..awesome, Thanks.
@RaviPatel-po2gu2 ай бұрын
Great Videos is it possible to cover the life cycle of Thread and its methods, how it works, ExecutorSerivice -> how it works internally, how it will reuse the same threads, in the prospective of the code
@filipfolkesson38653 жыл бұрын
You are making this course too easy! Thanks a lot
@RohitSharma-ke1bq4 жыл бұрын
Merge sort would have been good example for Fork Join. Nice work by the way. Awesome content.
@aadityaraj46913 жыл бұрын
Very good explanation, I have one question, how threads are created in ForkJoinPool? Is it one thread for each task? Else any fixed number of tasks when pool constructed?
@chinthakadharmasiri2 жыл бұрын
awesome explanation.!!! nicely explained and really liked the fibonacci example..!!
@mailtosmrutiranjan4 жыл бұрын
It would be good , if you can add performance metrices , means which implementation will give better performance , i know all are different threads calling same function , but still the internal implementation of CompletableFuture /CountdownLatch must have their own advantages.
@criticalthinking1234 жыл бұрын
Thank you to explain this simply and clearly.
@nikhilpawar7876 Жыл бұрын
Best explanation i have heard ever❤
@tulikamal Жыл бұрын
Nicely explained, thank you very much
@SuperDeb1985 Жыл бұрын
hi one question abt ExecutorService and ForkJoinPool . for e.g i am submitting one task to CompletableFuture.runAsAsynch(taskA, forkJoinPool) then forkjoin pool will do the work of forking taskA?
@Knigh7z3 жыл бұрын
When you say “task” and “sub task”, I presume these include general callables and runnables too? Like let’s say we use the execute or submit functions - you’ve submitted a callable to the fork join pool, and if that callable spawns more callables, are they considered sub tasks as well? Or do we only get benefits if we use those fork join specific APIs and pass ForkJoinTask instances.
@himaninegi939 ай бұрын
I have one scenario for which i need clarification. Consider my task is getting a user Info. now inside this parent task, i have 3 diff calls; 1 call to an 3rd part API which collects the user's recent transactions, 1 call to DB that gets user basic info(name, manager name, address etc) and 3rd call to get its profile picture. All 3 of these calls are independent and can run simultaneously and in the end, we just need to combine the data and send it back. Since you mention that forkjoinpool should be avoided in case of any IO operations, how do we manage it if I don't want to assign threads to these sub tasks individually?
@mahendharkhedhar78876 жыл бұрын
I'm big fan of u r teaching ,always eagerly waiting for u r vedios sir really ,we are very lucky to have you in this channel
@DefogTech6 жыл бұрын
Thank you so much for the kind words and unwavering support! That's what keeps me motivated.
@hariiyengar4 жыл бұрын
Grt Job Ajay. Very helpful. Thanks a lot
@DefogTech4 жыл бұрын
You are most welcome! I am not Ajay. Having said that, he is a friend and I too, am a fan of his work :)
@hyperborean724 жыл бұрын
Would you say that ForkJoinPool is identical to some other more tradional pool (ExecutorService) combined with CompletableFuture?
@spaarks845 жыл бұрын
Awesome video. Can you maybe demonstrate how you could use memioization to re-use already computed values across the various threads in order to optimize for speed. I know you said to avoid synchronization, but I would like to assume there is some elegant way.
@DefogTech5 жыл бұрын
If we want to re-use calculated values and make it available for all threads we can use ConcurrentHashMap instance which is shared/global. Internally it uses segmented locks which ensures good performance.
@mykytapiskarov72914 жыл бұрын
Thank you for the materials. Have may you try to use ForkJoinPool with Java7 to represent Java8 parallelStream
@divyangshah995 жыл бұрын
Just to clarify, thread will wait for all sub tasks to complete when join method is called, so it won't take a new task until all sub tasks are over, correct?
@DurgaShiva7574 Жыл бұрын
so which is better, executor-service or FORK-JOIN pool, can both be used inter-replacably (i know will have overheads), and most important, when to use what, and why ??? if anyone can please guide, will be very helpful, thanks in advance.
@daelous882 жыл бұрын
Really usefull, i can understand this, thank you men.
@pandit-jee-bihar5 жыл бұрын
Excellent video in a short duration!
@gurucharansharma55743 жыл бұрын
How does ExecutorService behave in the case of the task -> sub-task scenario? How does ExecutorService handle sub-tasks?
@BhawaniSingh-jc7cw4 жыл бұрын
Now I feel it is very simple ...Great...Thanks :)
@VikiSangani5 жыл бұрын
Very nicely explained, please keep posting such videos. Thank you very much.
@jagabandhumallick95383 жыл бұрын
Pretty clear explanation, thanks 🙏
@georgejnirappeal96574 жыл бұрын
Could you please explain how sub tasks managed in executer service?
@MadhuKumari-gy7uz3 жыл бұрын
Wow you're a saviour man🙌
@vamshikrishna81436 жыл бұрын
I very much like your way of delivery. could you please explain why "Do not perform Blocking IO operations" at 12:20 not recommended.
@DefogTech6 жыл бұрын
Thank you! Blocking IO is not recommended because ForkJoinPool tries to use limited threads, running on same cores, to take advantage of data locality and is thus faster. If we block the thread because of IO, ForkJoinPool will have to assign a new thread and flush the cache, which will still work but will be slower. In fact, then it is similar to using ExecutorService in my opinion.
@_abhishekmj_3 жыл бұрын
Is forkjoinpool better than recursion? Otherwise we already have recursion right?
@meenaljain38285 жыл бұрын
ExecutorService is the interface..in the hierarchy we further have ThreadPoolExecutor class and ForkJoinPool class..so both are executor service. Shouldn't there be comparison between ThreadPoolExecutor and ForkJoinPool ? or am i wrong somewhere?..However the video is awesome.
@DefogTech5 жыл бұрын
You are right, in fact internally ForkjoinPool is used in CompletableFuture/Streams API. Its a better version of ExecutorService in some ways and is thus preferred
@shellindebted53286 жыл бұрын
Thanks a lot for this video.Very nice explanation of ForkJoinPool concept.
@vijisdiary49026 жыл бұрын
Can you post video on the difference between Synchronised method and Synchronised block
@DefogTech6 жыл бұрын
There is no difference... Synchronized method is same as using synchronized (this) for whole method body.. Synchronized blocks are recommended when you want to have mutual exclusion for subset of a method or when you want to lock on some other object than 'this'.
@jineshsanghvi14 жыл бұрын
@@DefogTech The one main difference between synchronzied method and block is - In case of sync method the thread has to gain lock on the object of that method, where as with synchronized block you can provided any object whose lock that thread has to get to enter the critical section
@hyperborean724 жыл бұрын
How does RecursiveTaks relates to CompletableFuture if they bear any relation?
@SosetaFurioasaJr3 жыл бұрын
Good explanation, thanks!
@blueattube5 жыл бұрын
superb analysis and content.. hats off!! superb!! Lovely present with pleasant colours. :)
@roudder66064 жыл бұрын
perfect offtopic: was it kettle?)
@DefogTech4 жыл бұрын
lol, yes it is :)
@RepublicDay20236 жыл бұрын
Wao superb. Nicely explained. Thanks buddy.
@DefogTech6 жыл бұрын
You're welcome sir!
@pankajs4955 жыл бұрын
excellent sir . what a amazing video
@rohitjain14475 жыл бұрын
How can we avoid work stealing when using ForkJoinPool?
@waterflow47114 жыл бұрын
what do I have to do to make the code at 10:25 to work? When I input 5 it returns result 5.. but it needs to be 7.. plz help
@raghu30556 жыл бұрын
simply superb bro! the way you explained is :) can you please make some videos on Java 8.
@DefogTech6 жыл бұрын
Thank you sir! I definitely plan to add few more videos on Java 8
@manasranjan46 жыл бұрын
Thanks a lot. Very nice and clear explanation
@dineshchandgr3 жыл бұрын
amazing video bro. thank u
@pradeepanbaluchamy84696 жыл бұрын
Can u pls explain bitwise operations .. xor.
@Lahiru_Udana6 жыл бұрын
Thank you. Clearly explained
@prabhusamad45278 ай бұрын
wonderful man.
@shikharchoudhary76395 жыл бұрын
I java 8 parallel stream also uses fork join pool internally. But i dont know how it creates sub tasks.
@DefogTech5 жыл бұрын
ForkJoinPool need not always fork tasks, it's also used as a work stealing thread pool
@sanjoyganguly97216 жыл бұрын
please share some more real time example to understand the implementation
@vigneshbalachandran97044 жыл бұрын
Thanks bro for sharing.
@Mr.RaviTeja Жыл бұрын
Supper....👌
@TUHINT5 жыл бұрын
can u plz add a git link for the demo program
@josephmhlanga1724 жыл бұрын
Great stuff
@jetiax5 жыл бұрын
Thanks. Very clear.
@stoical593 жыл бұрын
Is there a email Id where we can post our problems?
@sumanghosh42995 жыл бұрын
thank you , it helped me a lot
@HowISeeThat2 ай бұрын
Sir please make new videos
@tayybaadien49003 жыл бұрын
can anyone please tell me the purpose of .......in RecursiveTask.... 😢😢😢
@aslam-kg4xo3 жыл бұрын
That is the object type that will be returned by the tasks. Take a look at the return type of *compute()* method. it is also Integer. hope it helps 😊