Create Azure Function - Queue Trigger In Azure Portal

Introduction

This article will help you learn how to create Azure Function – Queue Trigger in Azure Portal.

Before reading this article, please go through some important articles mentioned below,

  1. Exploring About Azure Function
  2. Create Http Trigger Azure Function In Azure Portal
  3. Create The Timer Trigger Azure Function In Azure Portal

Azure Function

Azure Functions is a serverless computing service and is hosted on the Microsoft Azure public cloud. It is designed to accelerate and simplify application development. The cloud provider takes care of all the headaches of running the server, dynamically managing the resources of the machine, etc. It also provides auto scalability.

Serverless applications, also known as Function-as-a-Service or FaaS, is an offering from most of the enterprise cloud providers in which they allow the users to only write code and the infrastructure behind the scenes is managed by them.

Azure Functions is the event-based serverless application framework which can automatically scale up and down based on the executions that are being triggered. This Microsoft Azure service allows you to run small pieces of code in Node.js, C#, Python, PHP and Java without any infrastructure configurations.

Here, we will see about Azure Function.

Purpose

Azure Functions lets you execute your code in a serverless environment without having to first create a VM or publish a web application.

Key Features

  • Intuitive, browser-based user interface - You can write code in the easy-to-use web interface.
  • write code in different programming languages
  • pay per function execution
  • parallel execution when multiple triggers occur
  • Supports Continuous Deployment and Integration

Queue Storage

Queue Storage in Azure allows users to store multiple messages in it. Users can use a queue to create a list of items that are processed one by one. Messages to Queue Storage in Azure can be added by using HTTP or HTTPS endpoints. Usually, a queue can store data up to 64 KB in size.

Queue Storage Trigger

The queue storage trigger runs a function as messages are added to Azure Queue storage.

Create Azure Function – Queue Trigger in Azure Portal

Prerequisites

  • Microsoft Azure Account.

Follow the below steps to create an Azure Storage Account.

Step 1

Log in here. Please go through the article mentioned below for creating Azure Function.

Step 2

After successfully creating the Azure Function services, you land over to the overview page as shown below.

Create Azure Function – Queue Trigger in Azure Portal

Step 3

Next, we have to create a Storage account.

Enter the values and click on create.

Once it is created, the windows are like this.

Create Azure Function – Queue Trigger in Azure Portal

Step 4

Now, open the function service and chooseFunction under Function tab. Now click on Create option to create function trigger.

Step 5

In this blade, you can able to see many triggers. Search for Queue Storage trigger function here.

  1. In that, we need to give function name
  2. Next enter path of Queue name
  3. Choose our storage account

In that, choose account connection as your storage account details and click on create.

Now, just view code+Test for Queue trigger function.

Create Azure Function – Queue Trigger in Azure Portal

And also Test/Run the code.

Create Azure Function – Queue Trigger in Azure Portal

Open the log and check it's connected.

Step 6

Now, we need to create Queue in storage account for getting the log details in functions. So, move to storage account.

Then, click on Queue and enter the name& click on the OK button.

Its looks like this window.

Next, click on Add message to add the message in queue.

Now, Add your message text and click on ok button.

Output

Now, move to functions and open the logs. we can successfully run our queue storage trigger function here. The output will look like this.

Create Azure Function – Queue Trigger in Azure Portal

And also we can check Total execution under overview.

Create Azure Function – Queue Trigger in Azure Portal

Summary

I hope you understood how we can create a queue storage trigger function in Azure portal. Stay tuned for more articles on Azure Function.


Similar Articles