Click here to Skip to main content
15,867,704 members
Articles / Hosted Services / Azure

7 Simple Steps to Run your First Azure Queue Program

,
Rate me:
Please Sign up or sign in to vote.
4.50/5 (7 votes)
15 May 2010CPOL6 min read 51.9K   593   33   2
7 simple steps to run your first Azure Queue program

7 Simple Steps to Run your First Azure Queue Program

Introduction

Azure queues help to communicate data between web role and worker role. Web roles are nothing but web applications which can be accessed by the end browser. Worker roles are background processes which run in the Azure system and they do not take direct request from the web.

So if we want to pass data to worker roles, we need to use Queues. Queues are temporary storage which act like a bridge between web role and worker role. So you can post data to web role, web role posts data to queues and worker role picks the data from queues to do further processing.

You also can watch these practical Step by Step Videos on Learn Azure and Learn Azure DeVops

Image 1

What Will We Do in this Article?

In this article, we will create a simple application which will allow us to enter customer feedbacks. These customer feedback messages will go through a quality check whether the messages have any kind of spam keywords. Currently we will only check for “XXX”.

Image 2

In other words, the above web role will submit the feedback message to queues, worker role will pick up the message, do a quality check and if the quality check passes, it will add it to the Azure table. In case you are new to how to create an Azure table, please read here.

Step 1: Ensure You Have Things in Place

In case you are a complete fresher to Azure, please ensure you have all the pre-requisites in place. You can read this article to get the basic prerequisite.

Step 2: Create a Web Role and Worker Project

The next step is to select the cloud service template, add the web role project and create your solution.

Image 3

Step 3: Configure Service Definition and Configuration Files

The next step is to define table storage and queue storage location in the service definition and configuration. Just to revise service definition files help you define the configuration name while service configuration actually set the value.

Below is how the service definition file looks like, we need the account name, shared key, queue storage and table storage end point. We need to define both these definitions both for worker role as well as for web role.

We are not sure if there is a way to avoid this redundancy. We Googled and found that we needed to define different definitions even if the names are the same. This link talks about the same.

XML
<?xml version="1.0" encoding="utf-8"?>
<ServiceDefinition name="QueueStorage"
	xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
<WebRole name="WebRole1" enableNativeCodeExecution="false">
<InputEndpoints>
<!-- Must use port 80 for http and port 443 for https when running in the cloud -->
<InputEndpoint name="HttpIn" protocol="http" port="80" />
</InputEndpoints>
<ConfigurationSettings>
<Setting name="AccountName" />
<Setting name="AccountSharedKey" />
<Setting name="QueueStorageEndpoint" />
<Setting name="TableStorageEndpoint" />
</ConfigurationSettings>
</WebRole>
<WorkerRole name="WorkerRole1" enableNativeCodeExecution="false">
<ConfigurationSettings>
<Setting name="AccountName" />
<Setting name="AccountSharedKey" />
<Setting name="QueueStorageEndpoint" />
<Setting name="TableStorageEndpoint" />
</ConfigurationSettings>
</WorkerRole>
</ServiceDefinition>

Once you have defined the definitions, it's time to define the configuration values for these definitions. Below is the service configuration file which has the values for all the 4 definitions defined in the definition file. You can see that the end point for both storage and queues are defined using a URL, in other words these storages are exposed through REST services.

Currently all the 4 configurations point to the local development storage, these values will change when you want to host online on the actual Azure platform.

XML
<?xml version="1.0"?>
<ServiceConfiguration serviceName="QueueStorage"
    xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration">
<Role name="WebRole1">
<Instances count="1" />
<ConfigurationSettings>
<Setting name="AccountName" value="devstoreaccount1" />
<Setting name="AccountSharedKey"
value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/
	K1SZFPTOtr/KBHBeksoGMGw==" />
<Setting name="QueueStorageEndpoint" value="http://127.0.0.1:10001" />
<Setting name="TableStorageEndpoint" value="http://127.0.0.1:10002" />
</ConfigurationSettings>
</Role>
<Role name="WorkerRole1">
<Instances count="1" />
<ConfigurationSettings>
<Setting name="AccountName" value="devstoreaccount1" />
<Setting name="AccountSharedKey"
value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/
	K1SZFPTOtr/KBHBeksoGMGw==" />
<Setting name="QueueStorageEndpoint" value="http://127.0.0.1:10001" />
<Setting name="TableStorageEndpoint" value="http://127.0.0.1:10002" />
</ConfigurationSettings>
</Role>
</ServiceConfiguration>

Step 4: Add CustomerInfo Entity Class

The next step is to create our entity class which has customer name and message. So below is a simple entity class called as CustomerInfo which inherits from TableStorageEntity. This class has 2 properties - CustomerName and Message.

C#
public class CustomerInfo :
Microsoft.Samples.ServiceHosting.StorageClient.TableStorageEntity
{
public CustomerInfo()
{
this.PartitionKey = "CustomerInfos";
this.RowKey = DateTime.Now.Ticks.ToString();
}
public string CustomerName { get; set; }
public string Message { get; set; }
}

Step 5: Add CustomerInfoDataContext Class

We need to create one more class, i.e., the data context class. This class is responsible for adding the above defined customer entity class. So the first thing is inherit from the TableStorageDataServiceContext class as shown in the below code snippet:

C#
public class CustomerInfoDataContext : TableStorageDataServiceContext
{}

In the same class, we create an initializetable method which will create the table structure define by the CustomerInfo class. Below is the code snippet explanation with comments.

C#
public void InitializeTable()
{
// Get access to the account of table storage end point
StorageAccountInfo accountInfo =
    StorageAccountInfo.GetAccountInfoFromConfiguration("TableStorageEndpoint",true);

// Create the table using the ‘TableStorage’ class.
// TableStorage.CreateTablesFromModel(typeof(CustomerInfoDataContext), accountInfo);
}

We also need to expose IQueryable interface which exposes CustomerInfo class which can be used by the Azure system to create Azure table structure.

C#
public IQueryable<CustomerInfo> CustomerInfos
{
get
{
return this.CreateQuery<CustomerInfo>("CustomerInfos");
}
}

We are also exposing an AddCustomer method which takes the CustomerInfo object , this object is then added to the Azure table using the AddObject method of the TableStorageDataServiceContext and finally for committing the same to the table, we call the SaveChanges method.

C#
public void AddCustomer(CustomerInfo _objCustomer)
{
this.AddObject("CustomerInfos", _objCustomer);
this.SaveChanges();
}

Once we add the customer entity into the table, we would like to display the same, so we have exposed a GetCustomerInfo function which is typecasted to list and this can be binded to the gridview.

C#
public List<CustomerInfo> GetCustomerInfo()
{
return this.CustomerInfos.ToList();
}

Step 6: Create Web Role to Add Customer Messages

The next step is to create a web role project with a ASPX UI page as shown below. You can see that the UI has a gridview source which can be used to display messages and 2 text boxes for customer name and feedback.

Image 4

The submit messages button adds messages to the queue while the get old feedback messages displays the messages from the tables.

In order to add the customer and messages to the queue, the first step is to get hold of the StorageAccountInfo object using the configuration of the queues.

C#
StorageAccountInfo accountQueueInfo =
	StorageAccountInfo.GetDefaultQueueStorageAccountFromConfiguration();

Use this account queue information to create the storage.

C#
QueueStorage qs = QueueStorage.Create(accountQueueInfo);

Get the customer queue using the Queuestorage class.

C#
MessageQueue queue = qs.GetQueue("customer");

Create the customer queue if it does not exist using the DoesQueueExist method.

C#
if (!queue.DoesQueueExist())
queue.CreateQueue();

Create the message object by concatenating both the text boxes and put the same in the queue.

C#
Message msg = new Message(TextBox1.Text+"#"+TextBox3.Text);
queue.PutMessage(msg);

We also have a second button on the web role screen to display the data added in the customer table. So below is the code which will help you display data from the Azure table.
Get hold of the CustomerInfoDataContext class.

C#
CustomerInfoDataContext objCustomerDataContext = new CustomerInfoDataContext();

Use the GetCustomerInfo function which was discussed in the previous steps to get a list of CustomerInfo objects.

C#
List<CustomerInfo> _objCustomer = objCustomerDataContext.GetCustomerInfo();

Finally bind the customer objects with the gridview.

C#
if (_objCustomer.Count > 0)
{
GridView1.DataSource = _objCustomer;
GridView1.DataBind();
}

Step 7: Create Worker Role to Read the Messages

In step 7, we have seen how the web role inserts data into the queue. Now the queue is read by the worker role, the message is parsed and searched for ‘xxx’. If it's not found, it will add the same to the tables.

So the first step is to get hold of the queue object as shown in the below code snippet:

C#
StorageAccountInfo accountQueueInfo =
	StorageAccountInfo.GetDefaultQueueStorageAccountFromConfiguration();
QueueStorage qs = QueueStorage.Create(accountQueueInfo);
MessageQueue queue = qs.GetQueue("customer");

In the worker, there will be an infinite loop which will keep running and polling for messages using the queue objects which we just obtained from the above step.

C#
while (true)
{
Message msg = queue.GetMessage();
if (msg != null)
{
// Parse XXX data here
}
}

In the while loop, we get the message and check for 'XXX' as shown in the below code snippet. If we do not find a ‘XXX’, we add it to the table as entity using the data context object as shown in the below code snippet:

C#
string message = msg.ContentAsString();
string name = message.Substring(0, message.IndexOf("#"));
string msgUser = message.Substring(message.IndexOf("#") + 1,
		message.Length - message.IndexOf("#") - 1);
if (!msgUser.Contains("xxx"))
{
CustomerInfo _obj = new CustomerInfo();
CustomerInfoDataContext objCustomerDataContext = new CustomerInfoDataContext();
_obj.CustomerName = name; _obj.Message = msgUser;
objCustomerDataContext.InitializeTable();
objCustomerDataContext.AddCustomer(_obj);
}

queue.DeleteMessage(msg);

Now we are all set to run the program. Just to ensure that all the tables are created, right click on the Visual Studio project and select ‘Create test storage tables’ as shown below:

Image 5

Enjoy your hard work. If you now add ‘XXX’ in the feedback message, it's not added to the table and rejected by the worker role. If you add a normal message, it's displayed on the gridview source of the web role project.

Image 6

History

  • 11th February, 2010: Initial post

For further reading do watch the below interview preparation and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Written By
Software Developer
India India
I am currently working as a Software Eng in a company in India. Have 2 years+ experience in Asp/Asp.Net.
I am very keen in learning new Technologies. Have worked on WCF, VSTS 2010, Sharepoint, Azure, Silverlight, etc..

Email Id:chintan386@yahoo.com

Comments and Discussions

 
GeneralMy vote of 5 Pin
Kanasz Robert28-Sep-12 5:43
professionalKanasz Robert28-Sep-12 5:43 
GeneralOut of date Pin
Mad Pierre24-Oct-10 22:06
Mad Pierre24-Oct-10 22:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.