Skip to content

Latest commit

 

History

History
156 lines (95 loc) · 8.46 KB

functions-integrate-storage-queue-output-binding.md

File metadata and controls

156 lines (95 loc) · 8.46 KB
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 ms.custom
Add messages to an Azure Storage queue using Functions | Microsoft Docs
Use Azure Functions to create a serverless function that is invoked by an HTTP request and creates a message in an Azure Storage queue.
azure-functions
na
ggailey777
cfowler
0b609bc0-c264-4092-8e3e-0784dcc23b5d
functions
multiple
quickstart
multiple
na
09/19/2017
glenga
mvc

Add messages to an Azure Storage queue using Functions

In Azure Functions, input and output bindings provide a declarative way to make data from external services available to your code. In this quickstart, you use an output binding to create a message in a queue when a function is triggered by an HTTP request. You use Azure Storage Explorer to view the queue messages that your function creates:

Queue message shown in Storage Explorer

Prerequisites

To complete this quickstart:

Add an output binding

In this section, you use the portal UI to add a queue storage output binding to the function you created earlier. This binding will make it possible to write minimal code to create a message in a queue. You don't have to write code for tasks such as opening a storage connection, creating a queue, or getting a reference to a queue. The Azure Functions runtime and queue output binding take care of those tasks for you.

  1. In the Azure portal, open the function app page for the function app that you created in Create your first function from the Azure portal. To do this, select All services > Function Apps, and then select your function app.

  2. Select the function that you created in that earlier quickstart.

  3. Select Integrate > New output > Azure Queue storage.

  4. Click Select.

    Add a Queue storage output binding to a function in the Azure portal.

  5. Under Azure Queue Storage output, use the settings as specified in the table that follows this screenshot:

    Add a Queue storage output binding to a function in the Azure portal.

    Setting Suggested value Description
    Message parameter name outputQueueItem The name of the output binding parameter.
    Storage account connection AzureWebJobsStorage You can use the storage account connection already being used by your function app, or create a new one.
    Queue name outqueue The name of the queue to connect to in your Storage account.
  6. Click Save to add the binding.

Now that you have an output binding defined, you need to update the code to use the binding to add messages to a queue.

Add code that uses the output binding

In this section, you add code that writes a message to the output queue. The message includes the value that is passed to the HTTP trigger in the query string. For example, if the query string includes name=Azure, the queue message will be Name passed to the function: Azure.

  1. Select your function to display the function code in the editor.

  2. For a C# function, add a method parameter for the binding and write code to use it:

    Add an outputQueueItem parameter to the method signature as shown in the following example. The parameter name is the same as what you entered for Message parameter name when you created the binding.

    public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, 
        ICollector<string> outputQueueItem, TraceWriter log)
    {
        ...
    }

    In the body of the C# function just before the return statement, add code that uses the parameter to create a queue message.

    outputQueueItem.Add("Name passed to the function: " + name);     
  3. For a JavaScript function, add code that uses the output binding on the context.bindings object to create a queue message. Add this code before thecontext.done statement.

    context.bindings.outputQueueItem = "Name passed to the function: " + 
                (req.query.name || req.body.name);
  4. Select Save to save changes.

Test the function

  1. After the code changes are saved, select Run.

    Add a Queue storage output binding to a function in the Azure portal.

    Notice that the Request body contains the name value Azure. This value appears in the queue message that is created when the function is invoked.

    As an alternative to selecting Run here, you can call the function by entering a URL in a browser and specifying the name value in the query string. The browser method is shown in the previous quickstart.

  2. Check the logs to make sure that the function succeeded.

A new queue named outqueue is created in your Storage account by the Functions runtime when the output binding is first used. You'll use Storage Explorer to verify that the queue and a message in it were created.

Connect Storage Explorer to your account

Skip this section if you have already installed Storage Explorer and connected it to the storage account that you're using with this quickstart.

  1. Run the Microsoft Azure Storage Explorer tool, select the connect icon on the left, choose Use a storage account name and key, and select Next.

    Run the Storage Account Explorer tool.

  2. In the Azure portal, on the function app page, select your function and then select Integrate.

  3. Select the Azure Queue storage output binding that you added in an earlier step.

  4. Expand the Documentation section at the bottom of the page.

    The portal shows credentials that you can use in Storage Explorer to connect to the storage account.

    Get the Storage account connection credentials.

  5. Copy the Account Name value from the portal and paste it in the Account name box in Storage Explorer.

  6. Click the show/hide icon next to Account Key to display the value, and then copy the Account Key value and paste it in the Account key box in Storage Explorer.

  7. Select Next > Connect.

    Paste the storage credentials and connect.

Examine the output queue

  1. In Storage Explorer, select the storage account that you're using for this quickstart.

  2. Expand the Queues node, and then select the queue named outqueue.

    The queue contains the message that the queue output binding created when you ran the HTTP-triggered function. If you invoked the function with the default name value of Azure, the queue message is Name passed to the function: Azure.

    Queue message shown in Storage Explorer

  3. Run the function again, and you'll see a new message appear in the queue.

Clean up resources

[!INCLUDE Clean up resources]

Next steps

In this quickstart, you added an output binding to an existing function. For more information about binding to Queue storage, see Azure Functions Storage queue bindings.

[!INCLUDE Next steps note]