Thursday 7 April 2022

What Is Azure Functions?

 Azure functions is a serverless concept of cloud native design that allows a piece of code deployed and execute without any need of server infrastructure, web server, or any configurations. Azure functions can be written in multiple languages such as C#, Java, JavaScript, TypeScript, and Python.

 
This article explains what an azure functions is, how to create an azure functions, and how to debug, test, and deploy azure functions.
 
Azure functions are scalable. When demand of execution increases, more resources are allocated automatically to the service and when requests fall, all extra resources and application instances drop off automatically.
 
Azure functions
 
Let’s say, you have to send a birthday email to your customers. You’re an ASP.NET web developer. Instead of building a website in ASP.NET, deploy and hosting it on IIS, just for one feature, you can simply write an azure function and put your email login in the function and deploy it on azure cloud. The azure functions will direct connect to your data source, get your customers emails, and send them an email on a scheduled date and time.
 
Azure functions are best suited for smaller apps have events that can work independently of other websites. Some of the common azure functions are sending emails, starting backup, order processing, task scheduling such as database cleanup, sending notifications, messages, and IoT data processing.
 

Why use Azure Functions

 
Here are some of the reasons why you should use azure functions. 
  1. Azure functions are lightweight and serverless.
  2. Azure functions are easier to write and deploy.
  3. Azure functions are fast to execute because there is no large application, startup time, initialization, and other events fired before the code is executed.
  4. Azure functions’ execution is triggered when an event is fired.
  5. Azure functions are compute-on-demand and that is scalable. When demand of execution increases, more resources are allocated automatically to the service and when requests fall, all extra resources and application instances drop off automatically.
  6. Azure functions support multiple programming languages including C#, F#, Java, JavaScript, TypeScript, and Python. You choose your choice of language.
  7. Azure functions do not need any infrastructure and have 0 maintenance.
  8. Azure function can be build, tested, and deployed in Azure portal using a browser.
  9. Azure functions are easy to upgrade and doesn’t affect other parts of the website.
  10. Azure functions use industry standard and can communicate with other APIs, databases, and libraries.

Create an Azure Functions using Visual Studio 2019

 
Before we go too far, let’s create a simple Azure Functions using Visual Studio 2019.
 
Open your Visual Studio 2019 and create a new project.
 
On new project template page, search for azure functions and you will see a template for Azure Functions. See below.
 
Create azure functions
 
Select the Azure Functions template and click Next.
 
On the below screen, you need to give your functions application a name and selection a location where the VS project is going to reside.
 
Configure Azure functions in Visual Studio
 
You may also see from the above screen that the function is created using C# and have Azure and Cloud tags means it will be deployed and run on Azure cloud.
 
Click Create button.
 
On the next screen, we need select what kind of application it will be. Azure functions have this concept of triggers. A trigger is what causes a function to run. Each function has exactly one trigger.
 
Let’s take a look at this below screen that shows various triggers available in Visual Studio for an Azure functions app.
 
Create Azure functions app
 
As you can see, each trigger has its own specific purpose.
 
For now, let us select Http Trigger that is executed whenever an HTTP request is made.
 
Click on Create button to create our app.
 
We land in Visual Studio and there is default file, Function1.cs and that is where our default function code is.
 
Azure functions app code
 
Here is the complete code of my function.
 
  1. using System;    
  2. using System.IO;    
  3. using System.Threading.Tasks;    
  4. using Microsoft.AspNetCore.Mvc;    
  5. using Microsoft.Azure.WebJobs;    
  6. using Microsoft.Azure.WebJobs.Extensions.Http;    
  7. using Microsoft.AspNetCore.Http;    
  8. using Microsoft.Extensions.Logging;    
  9. using Newtonsoft.Json;    
  10. namespace HelloFunction {    
  11.     public static class Function1 {    
  12.         [FunctionName("Function1")]    
  13.         public static async Task < IActionResult > Run(    
  14.             [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, ILogger log) {    
  15.             log.LogInformation("C# HTTP trigger function processed a request.");    
  16.             string name = req.Query["name"];    
  17.             string requestBody = await new StreamReader(req.Body).ReadToEndAsync();    
  18.             dynamic data = JsonConvert.DeserializeObject(requestBody);    
  19.             name = name ?? data?.name;    
  20.             string responseMessage = string.IsNullOrEmpty(name) ? "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response." : $ "Hello, {name}. This HTTP triggered function executed successfully.";    
  21.             return new OkObjectResult(responseMessage);    
  22.         }    
  23.     }    
  24. }     
That was the default code of our Azure functions.
 
Now, let’s build and execute it.
 
Visual Studio provides an Azure Storage emulator to run and test azure functions locally.
 
Build and Run the application using F5.
 
You will see the Azure Storage emulator is being started.
 
Azure Storage emulator
 
The next screen will be func.exe showing this message that your function is ready and can be used.
 
Azure Functions Core Tools
 
As you can see from the above screen, the Azure functions, Function 1 has GET, POST and the URL is http://localhost:7071/api/Function1. This is the URL you can use to execute the function.
 
Let’s type this URL in our local browser and pass a query string with a value. The output looks like the following where you can see the function takes the query string input and displays on the screen.
 
Azure functions in browser
 
That is all. You just completed the Hello Azure Functions application.
 

Publish Azure Function to Azure

 
You can publish your Azure functions app direct from Visual Studio or Visual Studio Code.
 
In my Visual Studio project, right click on the project name and select Publish.
 
It will launch the Publish screen where you may select Azure, Docker or other folders where you may wish to deploy your app.
 
In our case, I select Azure.
 
Publish Azure functions
 
On the next screen, you will need to select Azure function app operating system, Windows, Linux, or App Container.
 
I select Windows.
 
Azure functions app Windows
 
On the next screen, you will have to provide the name of the function app, an Azure subscription, Resource group, Plan Type, Location, and Azure Storage that is required to deploy and execute an Azure functions app.
 
Azure functions settings
 
Click on Create button will create a new App Service.
 
Azure functions app service
 
This process may take a while. Wait until its done and you see the below screen.
 
On this below screen, you will see the Function instance. Click on Finish button.
 
Azure functions publish
 
Once finished, you will go back to the Publish page where you can see Site URL, configuration, and a User name and Password automatically assigned to the functions app. You may want to COPY the Site URL for later use.
 
Azure functions publish settings
 
Click on Publish button.
 
The publish process will start.
 
Azure functions publish status
 
Once the publishing is finished, you will see Publish succeeded message.
 
Azure functions publish success
 
To ensure that the function app is published, you can now copy the Site URL in a browser. My URL was this,
https://hellofunction20210205221452.azurewebsites.net/
 
You will see a message that your functions app is up and running.
 
Azure functions test
 
Now, you’re ready to consume this function app.
 

When to use Azure Functions?

 
Azure functions service is a lightweight and serverless compute service that has its own use. You can’t replace a large website with Azure functions.
 
Here are some of the use cases of Azure functions, 
  • Scheduled Tasks
  • Reminders and Notifications
  • Lightweight Web API
Azure functions are best suited for smaller apps have events that can work independently of other websites. Some of the common azure functions are sending emails, starting backup, order processing, task scheduling such as database cleanup, sending notifications, messages, and IoT data processing.
 

What are the benefits of azure functions?

 
Azure functions have the following benefits
  • Azure functions app is lightweight and requires very less resources to deploy and execute.
  • Azure functions app us serverless and does not require any Web server setup in cloud.
  • Azure functions app is compute-on-demand and doesn’t consume resources when not running.
  • Azure functions app charges are pay per use and you don’t pay anything if not using.
  • Azure functions app is event driven and executes only when event is fired.
  • Azure functions app is independent of other apps and does not affect or interfere with other apps.
  • Azure functions app is easy to write and deploy.
  • Azure functions app is easy to maintain and support.
  • Azure functions app is industry standard and developed and consumed using industry standard language and technologies.
What languages can be used for azure functions?
 
The languages supported to developer azure functions are C#, JavaScript, F#, Java, Powershell, Python, and TypeScript.
 

Where are azure functions in the portal?

 
Azure functions in Azure is created using Functions App. Go to your Azure Portal and search for “Functions App”. See below:
 
Azure functions in Azure portal
 
Click on Functions App will take you to the Function App page where you can use + Create link to create a new Azure functions.
 
Azure Function app in Azure
 

What tools are used to develop azure functions?

 
The popular tools to develop azure functions are Visual Studio, Visual Studio Code, and CLI. You can actually use any tool or IDE that you used to write build your web applications as long as they support one of the azure function language C#, JavaScript, F#, Java, Powershell, Python, and TypeScript.
 
You can also use Azure portal to develop azure functions in browser without using any tool or IDE. 

 

How to develop azure functions?

 
You can develop azure functions using Visual Studio, Visual Studio Code, or any developer IDE or even Azure portal. Azure portal and Visual Studio are probably the easiest way to develop azure functions.
 
Watch this video and learn how to build azure functions using Visual Studio Code. Asavari Tayal, Microsoft Program Manager in this video talks and demos what Azure functions is, how to build your first serverless Azure function code, and how to build, test, and deploy it in the cloud.
 

 

How to create and execute Azure functions

 
You can create azure functions using any developer IDE such as Visual Studio or Visual Studio Code. As long as the IDE supports azure functions. Visual Studio provides an Azure functions template.
 
Another easier way to create azure functions is direct azure portal. Azure portal has an add on called Functions App. Search Azure portal for “Functions App”.
 
Once an Azure functions created, you need to deploy it in Azure cloud and that is where it is hosted and gets executed (runs) on-demand. All the resources such as compute and storage are available in Azure and consumed as needed by the function. 

 

How to debug Azure functions?

 
Debugging your code is an important part of software development. Watch this video to learn how to debug Azure functions using Visual Studio Code. Same debugging process can be used in Visual Studio.
 

 

How to test Azure functions

 
Once an Azure functions code is written on your local machine or in Azure cloud, you should test them. If developed locally, you can write unit tests like any other .NET application.
 
Watch this video to learn how to create a test project to test an Azure functions.
 

 

How to deploy Azure functions

 
Deploying Azure functions in Azure is pretty simple and straight forward. You can use either Visual Studio Code or Visual Studio to deploy your Azure functions in few clicks.
Watch this video to learn how to deploy an Azure functions using Visual Studio Code.
 

 

How to use Azure functions and secure configuration with Azure Key Vault

 
In this video, learn how to use secure configuration for Azure functions with Azure Key Vault.
 

 

Summary

 
Azure functions is serverless, compute-on-demand, lightweight and independent app. In this article, we learned what azure functions app is, what is benefits are, when and when not to use azure functions. We also learned how to create an azure functions app using Visual Studio followed by how to debug, test, and deploy azure functions in Azure cloud.
 

No comments:

Post a Comment