Creating Avatars with Azure Functions

Azure Functions is a popular way to handle event-driven process without the need to think about how to connect input/output data, how to trigger action on a specific event (like the input of a data) and how to manage the infrastructure that will host application. With Azure Functions, Developers can focus on what is important, and that is coding. In this blog post, we will show how to create a simple image processing application where we upload to cloud data storage a picture that will trigger logic that will process the picture and return to the storage resized image with round corners and some additional logo. We will create and debug Azure Function on macOS (but you can follow the example on any platform), data will be stored on Azure Storage and the final product will be hosted on Azure inside of a Function App.

Continue reading “Creating Avatars with Azure Functions”

Run continuous/triggered task with WebJobs in Azure (part 2)

In previous blog session “Run continuous or triggered background task with WebJobs in Azure (part 1)” we’ve talked about a WebJobs in general and we have shown an example of a Continuous running WebJobs by using Timer function. We have also mentioned that we could use a WebJobs for Queue processing or File maintenance operations.

Continue reading “Run continuous/triggered task with WebJobs in Azure (part 2)”

Run continuous or triggered background task with WebJobs in Azure (part 1)

Let’s think for a minute about how we run a background task on on-premise systems. Two things that certainly came to your mind are SQL Jobs and Windows Services. Unfortunately, if you think about the Azure as a “Platform as a Service” then I have a bad news for you because SQL Jobs and Windows Services aren’t supported under this setup.

Continue reading “Run continuous or triggered background task with WebJobs in Azure (part 1)”