Load Balancing | What are Load Balancers?

  Рет қаралды 168,837

Tech Primers

Tech Primers

Күн бұрын

Пікірлер: 73
@chayanchoudhury3042
@chayanchoudhury3042 3 жыл бұрын
you are a Guru...if someone can explain a concept in 10 mins in a way as beautiful as this one...then hes called a GURU...
@saritanegi8602
@saritanegi8602 2 жыл бұрын
Nice explanation especially about sticky session. Thank you
@dominikseljan3043
@dominikseljan3043 6 жыл бұрын
Awesome video! Just wanted to thank you for all these extremely useful videos about Spring and all the other stuff.
@TechPrimers
@TechPrimers 6 жыл бұрын
Thank you Dominik, Glad its useful for you all
@shyam8722
@shyam8722 5 жыл бұрын
Fantastic Explanation. I am a non-technical / non-CS person doing a course on AWS and I didn't understand what load balancing was. But this video is amazing. Thank you so much!
@techietejesh9811
@techietejesh9811 3 жыл бұрын
Concepts were neatly explained.thank you 😊
@duaamouawad9479
@duaamouawad9479 2 жыл бұрын
Very clear information
@asifkamranmalick5313
@asifkamranmalick5313 6 жыл бұрын
Short and sweet as always.
@TechPrimers
@TechPrimers 6 жыл бұрын
+ASIF KAMRAN MALICK thanks Asif
@jamesodongo9981
@jamesodongo9981 Жыл бұрын
Thank you so much! Please, guide me on how I can do analysis of load balancing in software defined networking.
@juanshyster9012
@juanshyster9012 4 жыл бұрын
Anybody else's eyes see the round grey ghost dot between the Amazon Blue Squares at the beginning of this video?
@ashrafm3564
@ashrafm3564 4 жыл бұрын
i have deleted now , u can watch
@aviT318
@aviT318 2 жыл бұрын
In the Algo of IP Hash, Only desired IPs will go to desired host, but what about other non-desired or non-priority IPs, do they fall back to older "round robin" kind of Algorithm ? as it only give priority to desired IPs so what about non-desired IPs ? Could you please explain ? Thanks
@nagautube1
@nagautube1 6 жыл бұрын
Thanks for the brief and clear explanations.
@Amukina1991
@Amukina1991 5 жыл бұрын
"it might take a while!" - jokes aside, this is really good man.
@abbashittalamani9524
@abbashittalamani9524 5 жыл бұрын
It was superb 👍
@shireen2296
@shireen2296 4 жыл бұрын
This a very helpful video - thank you!
@andrzejokon1517
@andrzejokon1517 6 жыл бұрын
As always great explained and another interesting subject. Thank you !
@Kristofercodes
@Kristofercodes 4 жыл бұрын
Very very good video!! I took notes and watched it slowly and i learned a lot. Thank you very much :)
@TechPrimers
@TechPrimers 4 жыл бұрын
Glad it was useful
@IndianCouple2022
@IndianCouple2022 5 жыл бұрын
which load balancer we use mostly?
@danni6113
@danni6113 5 жыл бұрын
This is really good! Please keep up the awesome work!!!
@AndreaNobili84
@AndreaNobili84 5 жыл бұрын
This is so good !!! You clarify me a lot of stuff in an easy way !!!
@kishankumargupta4200
@kishankumargupta4200 4 жыл бұрын
Also, can any load balancer use multiple algorithms to filter the best server to direct like it first uses the IP Hash and then least connection algorithm to get the server?
@rupeshkamble9105
@rupeshkamble9105 6 жыл бұрын
Great video.. If we use sticking and suppose the requests are more than capacity of the handler then it will crash ..what could be possible solution for that, ?? I want it to be server or algorithm end. As I want to do research , application side code is not useful ( as Amazon is doing)
@TechPrimers
@TechPrimers 6 жыл бұрын
you can limit the number of requests by rejecting the new connections. You can either user load balancers like ngnix or do it in a custom fashion
@prashantsingh-xr6zg
@prashantsingh-xr6zg 4 жыл бұрын
So if I do nslookup load balancer , will it return the ip address of all the servers in the pool or load balancer also has it's own ip address?
@KaranSingh-fo4bs
@KaranSingh-fo4bs 6 жыл бұрын
Nice explanation.Keep up the good work !!
@fluidityinmotion2452
@fluidityinmotion2452 4 жыл бұрын
Nice one. Thanks team
@iamdeepaksp
@iamdeepaksp 4 жыл бұрын
How would one architect a platform with multiple servers and a single load balancer to handle multiple customer requests and server downtime?
@TechPrimers
@TechPrimers 4 жыл бұрын
There are different strategies to tackle them. For loadbalancing you can either use software loadbalancer (Apache. nginx etc) or hardware load balancer. You can configure health checks in load balancer to identify which server is down and which is not, based on which traffic is redirected.
@MillionMania
@MillionMania 5 жыл бұрын
much help full bro..thank you
@samirghanchi441
@samirghanchi441 3 жыл бұрын
Thanks for this Video it's really useful keep it up good work. :)
@pareshdehadray7414
@pareshdehadray7414 3 жыл бұрын
If we use Sticky Session then what will happen if a server is crashed where request needs to go.
@TechPrimers
@TechPrimers 3 жыл бұрын
Load balancer decides that. It will either redirect to new instance or redirect to old(if load balancer did not know about the crashed insurance via keepalive health checks)
@pareshdehadray7414
@pareshdehadray7414 3 жыл бұрын
@@TechPrimers Thanks for quick reply. If it will redirect to new instance then we will not get cached information on new instance. We use Sticky Session so that no need to use distributed cache so in this case new instance will not be useful. Is there any technique to handle this situation? Or should we avoid Sticky Session at all? If it will redirect to old instance then request will be error out.
@AbhishekNigam
@AbhishekNigam 6 жыл бұрын
You explain very well! Thanks a lot!!
@malleshk2091
@malleshk2091 3 жыл бұрын
Nice explanation! But I have one doubt. Is it not that load balancer itself will become bottle neck as all requests will come to it and it has to forward requests? How is this handled?
@TechPrimers
@TechPrimers 3 жыл бұрын
Hence there will be multiple instances of the LBs. If you have a global need, these LBs will have local and global instances
@abhilashreddyintha8374
@abhilashreddyintha8374 3 жыл бұрын
Simply super
@oron15
@oron15 6 жыл бұрын
Can you explain how to maintain session persistence in case of some server has fallen(when we are don't want to save cache) ?
@ishwarsolanki4820
@ishwarsolanki4820 4 жыл бұрын
Sir you have content below topics Link Load Balancer between two leased line
@Waooo7409
@Waooo7409 6 жыл бұрын
Nicely explained. Plss carry on
@pareshdehadray7414
@pareshdehadray7414 3 жыл бұрын
Thanks for such informative video. Can one load balancer handle millions of requests? How Facebook, Amazon etc handles the user traffic? Do they have single load balancer? If I am in India and Load balancer is in USA so does it mean my request will go USA Load balancer and then to actual server for processing? Kindly explain.
@ManishVyas1
@ManishVyas1 6 жыл бұрын
Great explaination.
@TechPrimers
@TechPrimers 6 жыл бұрын
thanks manish. Glad that was useful
@shivammishra009
@shivammishra009 6 жыл бұрын
Good one, keep doing good work.
@leelaprasadjagu3177
@leelaprasadjagu3177 6 жыл бұрын
Can you please do a video on spring security using self signed certificates.
@TechPrimers
@TechPrimers 6 жыл бұрын
Hi Leela. It's not that easy as it sounds. :) But will try
@leelaprasadjagu3177
@leelaprasadjagu3177 6 жыл бұрын
Tech Primers No problem. Thanks for the videos that you make for us.
@angelvsaji9230
@angelvsaji9230 3 жыл бұрын
Could you please share this ppt sir??
@KrishnaManohar8021
@KrishnaManohar8021 4 жыл бұрын
can u explain caching also?
@screwfeaar
@screwfeaar 6 жыл бұрын
If cart info is cached in browser, why request need to go to same instance always?
@sanjeevr86
@sanjeevr86 6 жыл бұрын
If it’s opened in mobile later
@br4676
@br4676 5 жыл бұрын
Very nice
@hk_build
@hk_build 4 жыл бұрын
All these servers has same application or diff bcz if same means for tiny change in application makes us to deploy it on all servers it's very expensive...
@TechPrimers
@TechPrimers 4 жыл бұрын
It’s the same app. Yes it’s expensive. If we need high availability, then we need to scale.
@hk_build
@hk_build 4 жыл бұрын
@@TechPrimers is microservice over come this issue am not sure plz confirm
@sujithg5873
@sujithg5873 6 жыл бұрын
Could u explain request q example in java
@TechPrimers
@TechPrimers 6 жыл бұрын
+Sujith G couldn't get your question. Are you asking for a load balancing example in a java app
@sujithg5873
@sujithg5873 6 жыл бұрын
Yess how can we handle huge request in at a time.How can handle in java
@avinowrastogi4269
@avinowrastogi4269 5 жыл бұрын
well explained. Thank you.
@omphemetsemafoko830
@omphemetsemafoko830 5 жыл бұрын
Thank you
@rudhisundar
@rudhisundar 6 жыл бұрын
Thank you!
@stanislavshopov85
@stanislavshopov85 5 жыл бұрын
thank you !
@naveen-ib5ly
@naveen-ib5ly 5 жыл бұрын
Thank bro...
@CandyLemon36
@CandyLemon36 Жыл бұрын
This content showcases insightful depth. A book I read with like-minded themes altered my life's course. "A Life Unplugged: Reclaiming Reality in a Digital Age" by Theodore Blaze
@adewumisunkanmi5593
@adewumisunkanmi5593 5 жыл бұрын
God bless you
@Lucky-uz3je
@Lucky-uz3je 6 жыл бұрын
you are awesome.
@jankalode
@jankalode 5 жыл бұрын
could you make this topic in english?
@perfect.stealth
@perfect.stealth 3 жыл бұрын
Whyyy WHYYY the music man.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
What are WebSockets | How is it different from HTTP?
15:42
Tech Primers
Рет қаралды 386 М.
What is a Load Balancer?
8:22
IBM Technology
Рет қаралды 256 М.
API Gateway vs Load Balancer vs Reverse Proxy: when to use what?
9:06
Software Developer Diaries
Рет қаралды 29 М.
API Gateway vs Load Balancer || Microservices Interviews
16:27
RAG Architecture | Scalable Architecture for LLMs
14:39
Tech Primers
Рет қаралды 1,8 М.
Comparing Load Balancing Algorithms
7:27
jscapeus
Рет қаралды 104 М.
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН