title | description | services | documentationcenter | author | manager | editor | tags | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Use Azure Functions to perform a scheduled clean-up task | Microsoft Docs |
Use Azure Functions create a C# function that runs based on an event timer. |
functions |
na |
ggailey777 |
erikre |
076f5f95-f8d2-42c7-b7fd-6798856ba0bb |
functions |
multiple |
article |
multiple |
na |
09/26/2016 |
glenga |
This topic shows you how to use Azure Functions to create a new function in C# that runs based on an event timer to clean-up rows in a database table. The new function is created based on a pre-defined template in the Azure Functions portal. To support this scenario, you must also set a database connection string as an App Service setting in the function app.
Before you can create a function, you need to have an active Azure account. If you don't already have an Azure account, free accounts are available.
This topic demonstrates a Transact-SQL command that executes a bulk cleanup operation in table named TodoItems in a SQL Database. This same TodoItems table is created when you complete the Azure App Service Mobile Apps quickstart tutorial. You can also use a sample database If you choose to use a different table, you will need to modify the command.
You can get the connection string used by a Mobile App backend in the portal under All settings > Application settings > Connection strings > Show connection string values > MS_TableConnectionString. You can also get the connection string direct from a SQL Database in the portal under All settings > Properties > Show database connection strings > ADO.NET (SQL authentication).
This scenario uses a bulk operation against the database. To have your function process individual CRUD operations in a Mobile Apps table, you should instead use Mobile Table binding.
A function app hosts the execution of your functions in Azure. It is a best practice to store connection strings and other secrets in your function app settings. This prevents accidental disclosure when your function code ends-up in a repo somewhere.
-
Go to the Azure Functions portal and sign-in with your Azure account.
-
If you have an existing function app to use, select it from Your function apps then click Open. To create a new function app, type a unique Name for your new function app or accept the generated one, select your preferred Region, then click Create + get started.
-
In your function app, click Function app settings > Go to App Service settings.
-
In your function app, click All settings, scroll down to Application settings, then under Connection strings type
sqldb_connection
for Name, paste the connection string into Value, click Save, then close the function app blade to return to the Functions portal.
Now, you can add the C# function code that connects to your SQL Database.
-
In your function app, click + New Function > TimerTrigger - C# > Create. This creates a function with a default name that is run on the default schedule of once every minute.
-
In the Code pane in the Develop tab, add the following assembly references at the top of the existing function code:
#r "System.Configuration" #r "System.Data"
-
Add the following
using
statements to the function:using System.Configuration; using System.Data.SqlClient; using System.Threading.Tasks;
-
Replace the existing Run function with the following code:
public static async Task Run(TimerInfo myTimer, TraceWriter log) { var str = ConfigurationManager.ConnectionStrings["sqldb_connection"].ConnectionString; using (SqlConnection conn = new SqlConnection(str)) { conn.Open(); var text = "DELETE from dbo.TodoItems WHERE Complete='True'"; using (SqlCommand cmd = new SqlCommand(text, conn)) { // Execute the command and log the # rows deleted. var rows = await cmd.ExecuteNonQueryAsync(); log.Info($"{rows} rows were deleted"); } } }
-
Click Save, watch the Logs windows for the next function execution, then note the number of rows deleted from the TodoItems table.
-
(Optional) Using the Mobile Apps quickstart app, mark additional items as "completed" then return to the Logs window and watch the same number of rows get deleted by the function during the next execution.
See these topics for more information about Azure Functions.
- Azure Functions developer reference
Programmer reference for coding functions and defining triggers and bindings. - Testing Azure Functions
Describes various tools and techniques for testing your functions. - How to scale Azure Functions
Discusses service plans available with Azure Functions, including the Consumption plan, and how to choose the right plan.
[!INCLUDE Getting Started Note]