Skip to content

December 2025

Photo by Abet Llacer: https://www.pexels.com/photo/black-laptop-beside-audio-mixer-set-919734/

Event Driven Azure Container App Jobs

In my previous blog post I wrote about Container App Jobs and how to run them on scheduled manner. This time, we’ll explore how to run Container App Jobs in response to events. The Jobs supports KEDA scaling to trigger the job, which means that it can be triggered from Azure Service Bus messages, Blob Storage queue events etc. There are lots of options, but in this post we are …

Photo by Tom Fisk: https://www.pexels.com/photo/aerial-view-of-cargo-ship-1554646/

Azure Container App Jobs: A Simpler Approach to Background Tasks in Azure

Azure Container Apps Jobs is a feature that doesn’t get enough attention. While everyone defaults to Azure Functions, I’ve found that Container Apps Jobs is often the easier and more pragmatic way to run scheduled tasks or process Azure Service Bus events.

The Problem with Azure Functions

If you have used Azure Functions for scheduled jobs or batch processing, you know that setting is a bit pain the ass. First, …