Questions tagged [azure-queues]

Microsoft Azure (formerly Windows Azure before March 25, 2014) is a cloud computing platform and infrastructure, created by Microsoft, for building, deploying and managing applications and services through a global network of Microsoft-managed data centers. Azure Queue storage is used for transporting messages between applications as normally we can consider a MSMQ do that in cloud.

Azure Queue Storage is a service for storing large numbers of messages. You access messages via authenticated calls using HTTP or HTTPS. A queue message can be up to 64 KB in size. Queues are commonly used to create a backlog of work to process asynchronously.

Azure Queues documentation

Tagging Recommendation:

Use the tag, for all Azure Queue Storage-related questions.

425 questions
0
votes
2 answers

How to Create Queue in Windows Azure?

I am using below code to create queue, using SharedSecretTokenProvider. However I am not able to supply correct values of managerName & managerKey value form windows azure portal. This results in Http 401 Unauthorized exception. How do I resolve…
Abhijeet
  • 13,562
  • 26
  • 94
  • 175
0
votes
1 answer

Messages in Azure Service Bus Queues remain in queue after expire time

I'm working with Azure Service Bus Queues in a request/response pattern using two queues and in general it is working well. I'm using pretty simple code from some good examples I've found. My queues are between web and worker roles, using MVC4,…
Keith Murray
  • 635
  • 1
  • 5
  • 15
0
votes
1 answer

Azure Queues vs Topics

I am developing a website to be deployed in Azure. Right now I am using an Azure Queue to send emails to users. I am checking the Queue for received messages after each 60 seconds by sleeping the current Thread. My problem is I do not want to wait…
Thilok Gunawardena
  • 924
  • 5
  • 22
  • 44
0
votes
1 answer

Restrict to maximum of one added message to the Azure Queue service using Shared Access Signatures

We have a requirement where we need to allow potentially many users to add one message to the Azure Queue Service. Using Shared Access Signatures we can allow users to add messages to the queue for a limited time. But is it also possible to restrict…
0
votes
2 answers

Using Azure Queues as a State Machine

I'd like to use Azure Queues as a state machine for a high-load/high-scale web service. The client would submit a request to a web service endpoint, at which point i'd return a request id. I'd then submit the message to a queue so that a worker role…
RMD
  • 3,421
  • 7
  • 39
  • 85
0
votes
1 answer

Service Bus Queue Retry strategy : WCF application is timing out because of long retries

We have one service which puts data in service bus queue. We have retry strategy implemented for this. But as per Windows Azure team, queue can go down for 1-3 minutes. So we should have retry strategy which should try more than 3 minutes. If we…
0
votes
1 answer

Azure: CloudQueue and security, put a Access Key into a CloudQueueMessage

To give some work to my (workers) roles I put - into a queue - a message like: "connectionString inputContainerName outputContainerName WorkToDo" connectionString is an azure connection string…
Benjamin
  • 490
  • 1
  • 5
  • 19
0
votes
2 answers

Using type derived from CloudQueueMessage

Possible Duplicate: Passing object messages in Azure Queue Storage I am working on a use case that requires my queue messages a few more properties than the ones provided by Windows Azure Queue Messages (CloudQueueMessage class). I can't use most…
Vinod
  • 929
  • 1
  • 16
  • 42
0
votes
1 answer

Is it able to send service bus message in a windows service

Is it able to send Azure service bus message in a Windows Service? Recently, I build a Windows NT Service to send message to Azure queue. But it failed. I created two test console application, one uses the same code as my Windows NT Service to send…
Paul Zhou
  • 193
  • 2
  • 12
0
votes
2 answers

Is there any issue with resending a message back to the Azure queue

I've got a scheduler and some workers in Azure. The scheduler puts messages into a queue and the workers pull those messages and work on them. I've now just come into a scenario where I will need to move some data from table storage to our database…
Justin williams
  • 574
  • 1
  • 8
  • 26
-1
votes
1 answer

Which Azure service for batch processing?

Once a day I want to download multiple CSV files (could be several hundred of them), parse them, do some transforming and write them to another file or database. I want to have an overview which processing failed and which succeeded and prefereably…
stefan.at.kotlin
  • 15,347
  • 38
  • 147
  • 270
-1
votes
2 answers

Keyword not supported: 'data source' in entity framework with azure function

I am using azure function to triggerQueue with entity framework getting 'data source is not supported' error while using entity framework.My connection string is Following is the code where I am getting error var connString =…
-1
votes
1 answer

Using Azure Queue in Windows Service c#

I am trying to use MS Windows Azure queue in windows service to read messages. I am getting below error while creating queuereference, Exception Info: Microsoft.WindowsAzure.Storage.StorageException at…
Jegan
  • 139
  • 1
  • 8
-1
votes
1 answer

Azure - Triggered by Q-message

In our app (Azure hosted) we produce invoices, these have to be injected into an on premise accounting software. It is not possible to host an API that would be reachable from the Azure to post the invoices to. Is it possible to create an exe that…
BrilBroeder
  • 1,409
  • 3
  • 18
  • 37
-1
votes
1 answer

How to design an Azure Topic subscriber for downtime and not lose the messages?

If I have an Azure topic and for every event of type X that gets added to the topic I need to have one subscriber that logs that event to one location and I have another subscriber that actually does some processing on that topic message. What is…
Paul Mendoza
  • 5,709
  • 12
  • 53
  • 82
1 2 3
28
29