Significant Scalability Benefits in Spring Boot 3.2 using Virtual Threads

  Рет қаралды 24,902

Dan Vega

Dan Vega

6 ай бұрын

In this video we explore how to take advantage of Virtual Threads in your next Spring Boot Application. Virtual Threads offer significant scalability benefits in your Spring MVC applications that perform blocking calls such as talking to a database, writing to an input stream or talking to another service over HTTP.
🔗Resources & Links mentioned in this video:
Blog Post: www.danvega.dev/blog/virtual-...
👋🏻Connect with me:
Website: www.danvega.dev
Twitter: / therealdanvega
Github: github.com/danvega
LinkedIn: / danvega
Newsletter: www.danvega.dev/newsletter
SUBSCRIBE TO MY CHANNEL: bit.ly/2re4GH0 ❤️

Пікірлер: 77
@VLADICA94KG
@VLADICA94KG 5 ай бұрын
Thanks for the great content. It seems to be that the comparison is not 100% fair as you reduced from 200 default to 10 threads. So I guess the real difference is probably when you really hit the wall for the performance of the thread per request model. So I guess the more interesting would be to leave the default 200 threads setting and then spin up -n 1000 with less blocking time to show the real power. Nevertheless, I think the the point you showed is great and very thankful. Thanks for very useful content!
@codewithdarsa
@codewithdarsa 3 ай бұрын
bro just wanted to say that you're amazing and the things i learned on this channel is the absolute best, thanks to you king!!
@michaell8237
@michaell8237 3 ай бұрын
That is a great tutorial! Very easy-to-understand examples and it clarified all the important concepts!
@vananh8172
@vananh8172 4 ай бұрын
Thanks for your great explanation, very easy to understand
@VINITCHAUHAN05
@VINITCHAUHAN05 3 ай бұрын
As always best explanation. keep it up Dan!
@kappaj01
@kappaj01 5 ай бұрын
Great example! That extra bit of time is most prob due to the OS and some other overhead contending for share of the 10 threads. Pretty impressive.
@ivantodorov9136
@ivantodorov9136 2 ай бұрын
Great video! Thank you!
@javisartdesign
@javisartdesign 5 ай бұрын
great explanation, thanks for share it!
@aminesafi7261
@aminesafi7261 5 ай бұрын
Great content with an excellent explanation, keep going Dan ;)
@DanVega
@DanVega 5 ай бұрын
Glad I'm able to help out
@nmhmm2472
@nmhmm2472 5 ай бұрын
You are amazing 🎉 Thanks for easy explanation ❤
@DanVega
@DanVega 5 ай бұрын
You just made my day! Thank you for the kind words 🤩
@Juanj0se22
@Juanj0se22 5 ай бұрын
hey Dan, thanks for sharing! Being part of java 21 I could assume this is production ready right? great content!
@Asingh42
@Asingh42 5 ай бұрын
Thank you !!!!
@odedkeren3247
@odedkeren3247 16 күн бұрын
Thank you very much it was very interesting and helpful. just want to add why there is an additional seconds in those tests, need to do warm up to the jvm and after that the benchmark will get more realistic and consistent.
@renatoalexsander506
@renatoalexsander506 2 ай бұрын
Thank you!
@parmarkamlesh6493
@parmarkamlesh6493 5 ай бұрын
It is very important and cool feature provided and very easy to plugIn. Superb explaination and demo @DanVega. Thank you so much.
@DanVega
@DanVega 5 ай бұрын
You're very welcome!
@ILyaCyclone
@ILyaCyclone 5 ай бұрын
Hello, mister Dan. That was a concise and easy to understand overview. But what is the trade-off behind enabling virtual threads? There definitely is a reason why this neat feature is not enabled by default. Should we all just switch out blocking MVC apps to virtual threads and live happily or there must be some consideration?
@WaldoRochow
@WaldoRochow 5 ай бұрын
I like it, but migrating a jdk 17 app running in Docker requires jumping through a few hoops to enable jdk 21. Not insurmountable, but more than a single line in a config file. All the same, I love the direction this is going. Thanks for the introduction.
@JamesStansell
@JamesStansell 5 ай бұрын
Can you say more about what those hoops are? I expect to migrate some workloads to containers next year, likely without Java 21 at first.
@abelsalgadoromero4402
@abelsalgadoromero4402 5 ай бұрын
I am curious about thos hoops too. You can you Buildpacks to automatically build the image from source and that comes ootb with the Spring Boot plugin, that makes it actually 0 lines of code.
@WaldoRochow
@WaldoRochow 5 ай бұрын
@jamesStansell and @abelsalgadoromero4402, As with *any* migration/upgrade it will take some effort. First there is the compatibility roulette, of finding what versions of the various plugins you are using work with JDK 21, and which will need to be upgraded. I then also found that for some, they were still under milestones, so I needed to bring in the spring-milestones repository. Finally, if you're just getting going with containers, figuring out how to upgrade the jdk in your container may take a bit of doing too. As I said, not insurmountable, and the move to virtual threads is really great news.
@arvindpurohit2722
@arvindpurohit2722 Ай бұрын
Thanks a lot
@ManuLG
@ManuLG Ай бұрын
Nice video. Please what is the name of the software you used to make the slides?
@AleksandarT10
@AleksandarT10 5 ай бұрын
Great explanation! Should come really handy in IO bound apps. Would this break Spring Security or other things that use ThreadLocal - for example when storing the SecurityContext?
@hit_me_hamster
@hit_me_hamster 5 ай бұрын
With the introduction of virtual thread, several interfaces have been redesigned. As one of them, Thread Local can also be used in the traditional way. (I think it's the strength of language that runs on vm.) Instead, excessive use of Thread Local can overrun memory, and in fact, it eliminated a lot of use of TheadLocal in the implementation on the java.base package.
@user-hv7kd6vo7p
@user-hv7kd6vo7p 2 ай бұрын
From my tests, the reason why the timing measurements are never exact is because the 1st request is always treated separately, adding 3 extra seconds. So on video's minute 19:23, instead of the expected 18 seconds you get 21 seconds @DanVega.
@atiqkhaled8851
@atiqkhaled8851 3 ай бұрын
Hey Dan, why you didn't limit platform thread for virtual thread testing on properties file as you did without virtual thread? So that we could understand that 10 platform thread concurrently handle 60 request without blocking themselves. Great tutorial ❤
@VivekMore1
@VivekMore1 5 ай бұрын
Nice explanation! Why did we turn off the tomcat.threads.max when we turned the virtual threads on?
@DanVega
@DanVega 5 ай бұрын
It actually didn't matter...its either or, once you enable virtual threads that is no longer relevant. Nice catch
@hit_me_hamster
@hit_me_hamster 5 ай бұрын
14:06 It's a little off topic question, but what applications were used here?
@ismailforeveryone6889
@ismailforeveryone6889 5 ай бұрын
Please make a video how to deploy spring boot app on aws lambda using graalvm
@therealdave8891
@therealdave8891 5 ай бұрын
Nice video, it would be cool if you help us understand if a billion request come in at once, there will be a memory issue. Can you force the server to only accept so many active request? I always wondered about that.
@rajat9178
@rajat9178 5 ай бұрын
There are a few approaches here: 1. Do you want to serve all of those Billion requests? Then you need horizontal scaling, with your app servers sitting behind a load balancer, and preferably having auto-scaling enabled. If there's a DB involved, then you will also need to have multiple read-replicas set up, and a lot of caching between your app and the DB. 2. Do you want to discard requests that you can't serve? In that case, you can set up rate limiting. Any requests that breach your rate limit can be served with an HTTP 429 response (too many requests). They client would have to retry the request once traffic has died down. Of course, there are many more ways of handling a billion requests, I've just mentioned these two from top of my head.
@PedroManuelGalusso
@PedroManuelGalusso 2 ай бұрын
I have a question regarding how well a component scoped per request with @RequestScope would perform
@hasanal-sayyed
@hasanal-sayyed Ай бұрын
Great! but what is the best practice is i want to enable Virtual Threads for single route in my application ? manually create and run virtual Thread in controller?
@DanVega
@DanVega Ай бұрын
You don't enable virtual threads for a single endpoint you do it for your entire application. You don't need to manually create a virtual thread in your controller as Spring is handling that for you.
@SpringframeworkGuru
@SpringframeworkGuru 5 ай бұрын
Hey Dan - Nicely done on the video! Can't wait to try this out myself. Did you look at JVM memory consumption? I'm curious to see what, if any impact on memory there is. Thanks!
@DanVega
@DanVega 5 ай бұрын
Good to hear from you friend 🤩 I haven't done any comparisons with JVM memory consumption but I like where your heads at. I will take a look into that.
@SpringframeworkGuru
@SpringframeworkGuru 5 ай бұрын
@@DanVega - Let me know what you find. I'm curious from a operation cost perspective. ie running ~20 Spring Boot microservices in a K8 cluster. You can chew up a lot of memory quickly, which can drive up costs due to runtime memory needs.
@ainigma100
@ainigma100 5 ай бұрын
Thank you for the video Dan! I have question about the virtual threads. At 19:03 I see "Failed requests: 5", and after you enabled the virtual threads at 20:53 I see "Failed requests: 52". Does this mean that most of the requests failed?
@nm69
@nm69 5 ай бұрын
We can observe that they're failed req.s because of length mismatches, you can pass -l arg to ab to avoid. So we can ignore them in our case.
@DanVega
@DanVega 5 ай бұрын
Thank you for that answer!
@ainigma100
@ainigma100 5 ай бұрын
Thank you!@@nm69
@geraldodev
@geraldodev Ай бұрын
is there a connection pool that is compatible with virtual threads yet ?
@sivaramakrishna8029
@sivaramakrishna8029 5 ай бұрын
Thank you for the video. I am building the url with query params.If pass the header then not able to pass the query params. If pass the query params then not able to pass the bearer token. How to pass the bearer token in the header?
@sivaramakrishna8029
@sivaramakrishna8029 5 ай бұрын
I got it. Thank you
@vukotici32
@vukotici32 5 ай бұрын
What about ThreadLocal and InheritableThreadLocal is it still going to work wen i switch to virtual Threads and what about MDC.put from slf4j
@loic.bertrand
@loic.bertrand 5 ай бұрын
It still works with virtual threads, like it did with platform threads
@AlexAlex-qx2ho
@AlexAlex-qx2ho 5 ай бұрын
Expected you to show the final console output to make sure not all 10 platform threads were taken. Does someone know what thread names would be printed?
@DanVega
@DanVega 5 ай бұрын
You can run the example and see it in action but you should see the worker thread not go above 1.
@muchvibrant
@muchvibrant 5 ай бұрын
Hi Dan, was the max thread limit to 10 only to simulate a hardware (cpu core count) bottleneck? bcz I believe even if you didn't enable the virtual threads, the whole request would take similar time since your machine is capable of it even without the virtual threads. Am I correct?
@a.inozemtsev
@a.inozemtsev 5 ай бұрын
I had that same concern, so I am sure you are right.
@Shifter21000
@Shifter21000 5 ай бұрын
I think this depends on the type of the pool type. In case of fixed threadpool here matching with core count, for platform threads was meant to dictate don't create new thread for new request/task, beyond 10. Fixed thread pool has the strategy that till the cap is hit it will spawn new thread, unlike fork join pool. Usually setting more than 10 would pretty much be insignificant. After certain point the performance can vary because of context switches.
@SaifuddinMerchant
@SaifuddinMerchant 5 ай бұрын
Do keep in mind that there is a limit to physical threads you can setup. The default with tomcat is 200 - so while this example did constraint it down to 10 artificially - the same example when scaled would produce comparable results. Virtual Thread can effectively work with no limits (or really high) so they have a lot more scaling than physical threads
@htejwani1
@htejwani1 5 ай бұрын
Not sure why Dan changed max threads property. I have tested similar code with 300 concurrent threads, when virtual threads are turned on, the app becomes unresponsive. Without virtual threads, it just works fine.
@SaifuddinMerchant
@SaifuddinMerchant 5 ай бұрын
@@htejwani1 that doesn't make sense 😒
@joachimdietl6737
@joachimdietl6737 5 ай бұрын
Hey Dan what about home office? What do you think?
@DanVega
@DanVega 5 ай бұрын
What do you mean home office?
@joachimdietl6737
@joachimdietl6737 5 ай бұрын
@@DanVega i heared that all vmware employees should get back to office. Somehow i cannot link the article.
@parmarkamlesh6493
@parmarkamlesh6493 5 ай бұрын
Hi Dan, can you please tell me how you got the tshirt 😊?
@DanVega
@DanVega 5 ай бұрын
I made a few polos for myself :)
@parmarkamlesh6493
@parmarkamlesh6493 5 ай бұрын
@@DanVega pls tell me ,how I can get same . Please share link if you are fine.
@AbhishekKumar-xr1ss
@AbhishekKumar-xr1ss Ай бұрын
I don't think @19:27, there was a need to comment out the server.tomcat.threads.max=10 property before running the example with virtual threads Actually, keeping the max tomcat threads same would've validated the non-blocking nature of virtual threads. That is what I got when I executed virtual threads example with max tomcat threads as 10. Same result i.e. around 12sec
@alvarofallas73
@alvarofallas73 5 ай бұрын
Does it mean we don't need reactive libraries (like Reactor) anymore?? (If using spring boot)
@DanVega
@DanVega 5 ай бұрын
Great question. If you were only reaching for reactive programming as a scalability mechanism you now have an option on the imperative side of the house. Reactive programming is still a great architecture choice for streams based processing and dealing with back pressure. Another JEP in Project Loom (Structured Concurrency) is still in preview that is something else Webflux solves for.
@alvarofallas73
@alvarofallas73 5 ай бұрын
Ah right, I forgot about back pressure. So @@DanVega from your experience, what are some common problems that can be solved easily using reactive programming and that get complicated when doing imperative? I am thinking about maybe batch jobs, but even spring has Spring Batch right? I don't think it follows a reactive approach.
@a_rod1678
@a_rod1678 5 ай бұрын
So, in short Virtual Threads is similar to what Kotlin is doing with coroutines, isn't it?
@EddieSerban
@EddieSerban 5 ай бұрын
still light years away from erlang model :)
@keeganfisher1034
@keeganfisher1034 4 ай бұрын
You forgot to show the output while running virtual threads!
@DanVega
@DanVega 4 ай бұрын
You can do this on your machine if you want to give it a try.
@maorhamami8106
@maorhamami8106 4 ай бұрын
why this flag is not on by default?
@freebusdoctor
@freebusdoctor 5 ай бұрын
thanks sir
@sureshkrjsl
@sureshkrjsl 2 ай бұрын
Your video overlay is hiding a significant portion of your presentation and its annoying
@DanVega
@DanVega Ай бұрын
Sorry 🤷‍♂️
5 Common Mistakes Spring Developers Make
18:06
Dan Vega
Рет қаралды 14 М.
Eccentric clown jack #short #angel #clown
00:33
Super Beauty team
Рет қаралды 13 МЛН
КАРМАНЧИК 2 СЕЗОН 5 СЕРИЯ
27:21
Inter Production
Рет қаралды 538 М.
Java Virtual Threads and Scalability Of Enterprise Applications
12:06
Spring boot + PostgreSQL + Liquibase + Testcontainers
22:01
Sergey Labuzov
Рет қаралды 8 М.
Java 21 new feature: Virtual Threads #RoadTo21
33:35
Java
Рет қаралды 54 М.
Virtual Threads in Java 21
17:22
Will Tollefson
Рет қаралды 2,2 М.
Getting started with Spring Boot AOT + GraalVM Native Images
21:03
⌨️ Сколько всего у меня клавиатур? #обзор
0:41
Гранатка — про VR и девайсы
Рет қаралды 646 М.
Полный обзор iPad Pro M4 - хвалю!
26:27
Rozetked
Рет қаралды 243 М.
A Comprehensive Guide to Using Zoyya Tools for Photo Editing
0:50
Карточка Зарядка 📱 ( @ArshSoni )
0:23
EpicShortsRussia
Рет қаралды 67 М.
Дени против умной колонки😁
0:40
Deni & Mani
Рет қаралды 8 МЛН