Is this on par with Kubernetes orchestration when I want to scale my app? The only disadvantage of this is, it is Azure specific and you can't migrate to other cloud or is the anything else? Can it do blue-green deployment?
In Kubernetes, each Pod has an IP address. A Pod can communicate with another Pod by directly addressing its IP address, but the recommended way is to use Services. so your containers are talking with each other using services and not urls
Thank you for the video. Just curious so what happens when it "scales to zero" and a http request is received when there are no pods running? Would the user get a 404, timeout or just a very slow response?
How do I get application insights to work with container apps? I figured it out, if you have a cloudfunction docker image, you just need to add ENV variable with your APPINSIGHTS_INSTRUMENTATIONKEY
Microsoft demo using apple laptop :)
true haha
How did you trigger the load test? did you do this via Azure?
great video, this is a huge boost to the begginners
Thank you for this demo!
May I ask how you did the load testing? Is the code open sourced somewhere?
Thanks for the demo, when do you expect the service to be generally available (out of preview) ?
Is this on par with Kubernetes orchestration when I want to scale my app?
The only disadvantage of this is, it is Azure specific and you can't migrate to other cloud or is the anything else? Can it do blue-green deployment?
I am using in production, it's really good and amazing fast
Great to hear!
How those two containers are talking to each other after moving Payment code to Microservice? Isn't the url different for Payment Microservice?
In Kubernetes, each Pod has an IP address. A Pod can communicate with another Pod by directly addressing its IP address, but the recommended way is to use Services. so your containers are talking with each other using services and not urls
Thank you for the video. Just curious so what happens when it "scales to zero" and a http request is received when there are no pods running? Would the user get a 404, timeout or just a very slow response?
the first requests takes ~15seconds slow response, other requests are fast. if there is no any requests within 5mins, it will scale to zero again.
super!
🎉
Super !!
Of course MS engineer using mac
How do I get application insights to work with container apps? I figured it out, if you have a cloudfunction docker image, you just need to add ENV variable with your APPINSIGHTS_INSTRUMENTATIONKEY