Тёмный

Autoscale applications on Kubernetes with Kubernetes Event-Driven Autoscaling (KEDA) | Azure Friday 

Microsoft Azure
Подписаться 322 тыс.
Просмотров 12 тыс.
50% 1

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

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@charlesselvaraj6474
@charlesselvaraj6474 3 года назад
Great demonstration and neatly presented how K8S can autoscaled using Keda Thanks, Scott and Tom.
@kubernetesevent-drivenauto2536
@kubernetesevent-drivenauto2536 3 года назад
Hey that's me!
@omkarnadkarni4765
@omkarnadkarni4765 3 года назад
Looks amazing.. thank you for the nice demo
@luiarhs
@luiarhs 2 месяца назад
Right now we only need to use --enable-keda when creating or updating cluster, it's amazing!
@cyclingtechie
@cyclingtechie 3 года назад
Awesome technology and demo!!!
@MaartenBalliauw
@MaartenBalliauw 3 года назад
Great presentation 👏
@MostafaElzoghbi
@MostafaElzoghbi 2 года назад
love it! great details about the scale object to use keda in k8s clusters!
@amineherizi4687
@amineherizi4687 Год назад
Great demonstration , top notch!
@joshcarlisle6792
@joshcarlisle6792 3 года назад
Good stuff!
@bertusviljoen4201
@bertusviljoen4201 3 года назад
This is fantastic, the scaling being so fast and seamless will then remove any need for load balancing?
@tomKerkhove
@tomKerkhove 3 года назад
No, you will still need it but we do not support http workloads today. Not yet 😉
@bertusviljoen4201
@bertusviljoen4201 3 года назад
@@tomKerkhove thanks for the clarification.
@tomKerkhove
@tomKerkhove 3 года назад
@@bertusviljoen4201 happy to help!
@vithalwadjec97
@vithalwadjec97 3 года назад
That's great but how to make load balancing between the pods in aks.. If you plan to demonstrate same in coming future then that will be great
@tomKerkhove
@tomKerkhove 3 года назад
If you are referring to load balancing HTTP traffic, then we don't support that yet but are actively working on it. This is definitely a must so sit tight!
@andreaslassak2111
@andreaslassak2111 3 года назад
Some setup for selenium / playwright testing cluster with autoscale with KEDA ?
@tomKerkhove
@tomKerkhove 3 года назад
I have not used those before but it depends on what you want to scale. If it's CPU/memory, you can easily do that. If you need to scale on something else then we should talk! Feel free to open a discussion on this : github.com/kedacore/keda/discussions
@njpaps
@njpaps 2 года назад
Hi guys, just one question for everyone. Let's say we are using Autoscale. After an aks cluster automatically increases the number of nodes, how long does it take for the newly created node to be deleted and downscale, back to the original number (to one node). Of course we are assuming that there is no need (high traffic) for another node to be there. Thank you!
@deyanvp
@deyanvp 3 года назад
Nice slide about Autiscaling Responsibilities and Control, but why don't you mention that AF with Consumption Plan include cold starts for the newly created instances? I am not sure everyone realizes that only AF Premium Plan iclude the possibility to warm up new instances before they start receving requests, sth AKS with xxx probes can do out of the box ... And then go compare pricing AF Premium : AKS = 2:1 ...
@tomKerkhove
@tomKerkhove 3 года назад
I think that discussion is out of scope here and I'm not the correct person to discuss this, but it's not just the pricing. Although Azure Functions Premium might be a bit more expensive, I don't have to worry about anything other than my application while with AKS you need to ensure your cluster has enough capacity, it's always up, has DR, etc etc. If you are already doing that, then that's a fair choice! If you don't have it yet, go with Azure Functions Premium!
@edc641
@edc641 3 года назад
What about combining multiple triggers? If you have two subscriptions, each with its own trigger on messagecount, will they work together? If the first subscription trigger says "not much to do, run one instance only" and the other says "too many messages on my subscription, scale out!", which will win that fight?
@tomKerkhove
@tomKerkhove 3 года назад
That's definitely supported and in your scenario it will scale out since the most demanding trigger wins - Hope this is what you're looking for :)
@edc641
@edc641 3 года назад
@@tomKerkhove That is exactly what I was looking for! And the behavior makes total sense when you think about it. Just got keda2.1 installed in the cluster and can't wait to try it out. Thank you very much!
@tomKerkhove
@tomKerkhove 3 года назад
@@edc641 Great to hear and happy to help!
@yesubabu2880
@yesubabu2880 2 года назад
we have k8 Auto scaler right, whey we need KEDA?
@kavacham222
@kavacham222 Год назад
Great video. Thanks. I have a question like i want to deploy azure functions into AKS using kEDa scaled objects . Problm is i have 4 triggers types in one function , so how can I write the scaled object for the trigger type service bus, event hub, http, timer. Plz guide me how to write
@MicrosoftAzure
@MicrosoftAzure Год назад
Hi there! KEDA allows you to add one or more triggers. So you can easily add as many triggers that you want, you can learn more here: msft.it/60585hpJm
@kavacham222
@kavacham222 Год назад
@@MicrosoftAzure thanks for the quick reply. Definitely i will look into the url ..
@vikramjb
@vikramjb 2 года назад
What's the benefit of running Azure Functions on a Kube Cluster? Is it just portability or is there monetary benefits involved as well. I mean both can auto scale so why should we run Azure Functions on Kubernetes cluster?
@tomKerkhove
@tomKerkhove 2 года назад
This is not a question I can simply answer because it is related to so many topics but one of the main drivers can be companies standardizing on Kubernetes rather than the cloud provider itself. Those function apps will be for free indeed, but you are in charge of keeping them up and running, scaling them, providing capacity, etc while Azure Functions handles all of this for you as a FaaS. Another reason why you could run them on kubernetes is if you run on-prem, edge or multiple clouds where you want to use the Azure Functions paradigm but run it anywhere.. Does that paint the picture a bit for you?
@vikramjb
@vikramjb 2 года назад
@@tomKerkhove Thank you for responding. It definitely helps. So it's more to do with standardisation of the infrastructure and allow support for hybrid cloud environments right? I mean if we are to stick with Azure only then function apps and azure container apps will work/scale well right?
@tomKerkhove
@tomKerkhove 2 года назад
@@vikramjb that is correct! It allows you to run functions anywhere, but it's up to you to decide what you effectively need
@vikramjb
@vikramjb 2 года назад
@@tomKerkhove Perfect. Thank you for taking the time to respond. Appreciate it 👍
@venkydurai6379
@venkydurai6379 2 года назад
Please share git repo. Thanks
@vinylwarmth
@vinylwarmth 3 года назад
The video quality is poor...
Далее
НЕ БУДИТЕ КОТЯТ#cat
00:21
Просмотров 1 млн
KEDA: Kubernetes Event-Driven Autoscaling
16:02
Просмотров 27 тыс.
Azure Kubernetes Service (AKS) High Availability
1:04:59