Тёмный

Java ExecutorService - Part 2 

Jakob Jenkov
Подписаться 42 тыс.
Просмотров 20 тыс.
50% 1

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

 

27 сен 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 44   
@garamburito
@garamburito 3 года назад
It was a very good and clear explanation about the configuration of numbers of threads, thank you!
@JakobJenkov
@JakobJenkov 3 года назад
Good - glad you think so ! :-)
@alicanklc6539
@alicanklc6539 6 месяцев назад
Great explanations also Jakob can you include in which situation(s) do we need to use which of them.
@JoaoDias-xe2gg
@JoaoDias-xe2gg 3 года назад
amazing content, I really enjoy your videos, thank you so much!
@JakobJenkov
@JakobJenkov 3 года назад
Thanks - and your are welcome :-)
@LucAlucard1
@LucAlucard1 8 месяцев назад
Does Java use parallelism when we use Threads automatically? For example, If I've 4 CPU cores, if I create 4 threads, will they be executed equally among the existent CPUs?
@JakobJenkov
@JakobJenkov 8 месяцев назад
Java's standard threads (now called Platform Threads) are OS threads - so it is up to the OS to decide where your threads run. In many cases your threads will run on multiple CPU cores. But if the computer is very busy on all CPU cores with other tasks, your threads might end up running on the same core, or some threads on the same core at least.
@LucAlucard1
@LucAlucard1 8 месяцев назад
@@JakobJenkov thanks for replying teacher! I recently saw your channel and it’s being grate to see all videos. They are quite well explained and detailed!
@achuthiruku4458
@achuthiruku4458 3 года назад
Very good video with clear explanation.
@JakobJenkov
@JakobJenkov 3 года назад
Glad you liked it! :-)
@Minimingus
@Minimingus 3 года назад
great content! any chance to do something similar for the CompletableFuture api? there are many tutorials but none of them are in depth or show practical, real life examples
@JakobJenkov
@JakobJenkov 3 года назад
I might - but it all depends on how much time I have available - and at the moment I am really busy...
@MateuszNaKodach
@MateuszNaKodach 3 года назад
Thanks for the amazing video :) I have a question for concurrency. If I have for example 8 CPUs you said that, I can create thread pool with 8 threads and execute tasks in the same time. But what about others programs running on the same machine? Whats their impact? Our JVM is not only thing, we have operating system etc.
@JakobJenkov
@JakobJenkov 3 года назад
That is true - then JVM is often not the only process running on the machine. To be sure you would have to measure performance with different number of threads.
@bnnr4883
@bnnr4883 7 месяцев назад
is that Thread concept is interduce by you in java 😉? The why you are explaining like you are the founder of thread its really very clear thank you so much for this video's
@JakobJenkov
@JakobJenkov 7 месяцев назад
Thank you !! 😁 ... No, I am not the founder of threads in Java... 😁 ... but I have been explaining Java related concepts since 2006, so I had a but of practice 😊
@LucAlucard1
@LucAlucard1 8 месяцев назад
In case of cancelling it, do we know where it will be stopped? I mean, in previous videos from this exceptional series of multithreading and parallelism, it was sometimes we need to add a flag like "wasCancelled" to stop it in a specific point where it's "safe" for our case. Should we do the same for Future and Callable?
@JakobJenkov
@JakobJenkov 8 месяцев назад
As far as I remember, if a task is started - it will finish. I cannot remember if the Java ExecutorService sends a cancel signal to the task. But if a task has been queued in the ExecutorService but not yet started, it will not be started at all.
@LucAlucard1
@LucAlucard1 8 месяцев назад
@@JakobJenkov thanks for explaining, teacher!
@andrewnesbitt2593
@andrewnesbitt2593 10 месяцев назад
Brilliant. Thank you.
@JakobJenkov
@JakobJenkov 10 месяцев назад
You are welcome ! :-)
@leonardschmidt1864
@leonardschmidt1864 Год назад
can you make a video for the forkjoinpool in java :)
@JakobJenkov
@JakobJenkov Год назад
I have planned to do so 😊 Until then, you can start with the textual version of my ForkAndJoinPool tutorial, here jenkov.com/tutorials/java-util-concurrent/java-fork-and-join-forkjoinpool.html
@BoomLooBoom
@BoomLooBoom 3 года назад
The documentation says that ExecutorService#shutdown() does not wait for previously submitted tasks to complete execution docs.oracle.com/javase/7/docs/api/java/util/concurrent/ExecutorService.html#shutdown()
@JakobJenkov
@JakobJenkov 3 года назад
The method shutdown() does not wait for the ExecutorService to fully shut down - before exiting the shutdown() method. However, the ExecutorService will not be fully shutdown until all submitted tasks have been executed. In other words, the shutdown process continues asynchronously. To wait for all these tasks to finish executing, use awaitTermination(). I apologize if the video is a bit unclear here.
@fadidasus6329
@fadidasus6329 2 года назад
@@JakobJenkov thanks for the great content and crystal clear expectations. I just want to be sure that I understood the comment here correctly, so, does the shutdown method block the main thread until all tasks have completed, or it waits for all tasks to be completed and then shutdown the executor service without blocking the main thread ? Thanks in advance
@shamilibrahimov3898
@shamilibrahimov3898 11 месяцев назад
shutdown() itself does not block the main thread, but you can use awaitTermination() if you want to block and wait for the tasks to complete and the ExecutorService to shut down.@@fadidasus6329
@JoseLopez-wh7xe
@JoseLopez-wh7xe 11 месяцев назад
Amazing! 😊
@JakobJenkov
@JakobJenkov 10 месяцев назад
Thanks ! :-)
@menoktaokan
@menoktaokan 3 года назад
Thank you for the video.
@JakobJenkov
@JakobJenkov 3 года назад
You are most welcome :-)
@sharadyadav9630
@sharadyadav9630 3 года назад
Great .Please continue your work.
@JakobJenkov
@JakobJenkov 3 года назад
Thank you, I will - although I have limited time to make these videos, unfortunately! :-)
@hungnguyenngoc3069
@hungnguyenngoc3069 Год назад
I need subtitle, thanks
@rameshk2338
@rameshk2338 Год назад
Hi boss, Can you make videos on completable future in java
@JakobJenkov
@JakobJenkov Год назад
Hmm.... I might - thank you for the suggestion! :-)
@hareeshjp
@hareeshjp 3 года назад
Thank you it was very clear crystal video. Thank you very much Jakob.
@JakobJenkov
@JakobJenkov 3 года назад
You are welcome! :-)
@victorb9486
@victorb9486 3 года назад
Is it possible for you to share the code completely? For tests it my self,bassically
@JakobJenkov
@JakobJenkov 3 года назад
Not at this point in time - but maybe for future videos!
@victorb9486
@victorb9486 3 года назад
@@JakobJenkov ok, thanks for answer me
@mdshafi7043
@mdshafi7043 3 года назад
Assalamualikum.Can you please make a video or 2 on deadlock situation in java multithreading and how to handle them
@JakobJenkov
@JakobJenkov 3 года назад
I can - when I find the time to make it :-)