Tagged Questions
0
votes
1answer
125 views
Azure .NET Component Lifetime (CloudQueueClient, CloudQueue etc.)
If I am adding Windows Azure queue items or blob storage references from an MVC application using the .NET SDK, how long should each component stay about?
For queues we have CloudStorageAccount, ...
0
votes
1answer
70 views
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 as:
...
0
votes
2answers
201 views
Using type derived from CloudQueueMessage [duplicate]
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 ...
0
votes
0answers
677 views
Unable to get queue length / message count from Azure
I have a Use Case where I need to queue a select number of messages when the current queue length drops below a specified value. Since I'm running in Azure, I'm trying to use the ...
2
votes
1answer
231 views
Locking messages in queue with Windows Azure Queues
I am working with Windows Azure Message queues. I want know if is there a method to lock messages in the queue when i get them ?
4
votes
3answers
140 views
Is it possible to get a message from an azure storage queue twice?
I know that if a worker fails to process a message off of the queue that it will become visible again and you have to code against this (idempotent). But is it possible that a worker can dequeue a ...
0
votes
5answers
371 views
Windows Azure staging <--> production causing conflicts & errors on table storage
We had a terrible problem/experience yesterday when trying to swap our staging <--> production role.
Here is our setup:
We have a workerrole picking up messages from the queue. These messages ...
1
vote
3answers
2k views
how to write azure web role - worker role schedule task?
I am reaching a conflict in my azure project,
I'm trying to seclude task :
on every 16th of the month of .xml file form individual web site.
In my project I have one web role and one worker role,
...
2
votes
1answer
455 views
Azure queue and table storage transactions best practics
Using azure table storage I read about Entity Group Transactions within the same partition. Now what happens if I use the Azure Queue together with table storage. Is it possible to get handle a ...
0
votes
2answers
153 views
Using PHP to PUT messages on an Azure Queue, and add content to Blob Storage
I was just given the task of PUTTING messages onto a Azure message queue with PHP. Given that I'm new to PHP (brand new) - does anyone know of any resources I can use to get rolling with this?
I ...
3
votes
1answer
167 views
Limit number of message process attempts in Azure storage queue
I need to keep track of how many failed attempts have been made to process a message in an azure storage queue and delete the message after N unsuccesful attempts.
I have searched, but have not ...
1
vote
2answers
558 views
How does one determine if all messages in an Azure Queue have been processed?
I've just begun tinkering with Windows Azure and would appreciate help with a question.
How does one determine if a Windows Azure Queue is empty and that all work-items in it have been processed? If ...
2
votes
1answer
461 views
Maximum CloudQueueMessage payload size issue
According to MSDN, the Message payload may extend up to 8KB (8192 bytes):
The AddMessage method adds a message to the back of the queue.
A message may be up to 8 KB in size. Its content must be ...
3
votes
2answers
644 views
Azure Blob and Queue Thread Safety
I need some help in understanding the thread safety in azure CloudBlobClient, CloudQueueClient and CloudBlob classes.
I am developing a worker role which includes multiple independent job processors ...
2
votes
2answers
792 views
Azure Storage Queue very slow from a worker role in the cloud, but not from my machine
I'm doing a very simple test with queues pointing to the real Azure Storage and, I don't know why, executing the test from my computer is quite faster than deploy the worker role into azure and ...
2
votes
3answers
269 views
Is it possible to create a public queue in Windows Azure?
In Windows Azure it's possible to create public Blob Container. Such a container can be accessed by anonymous clients via the REST API.
Is it also possible to create a publicly accessible Queue?
The ...
1
vote
1answer
331 views
Exception when deleting message from Azure queue?
I'm dipping my toes into Windows Azure, and I'm running into something that has to be simple, but I just can't see it.
I have this small test to play with Azure queues:
public void ...
2
votes
1answer
695 views
Windows Azure - Web Role cannot access Local Development Queue Storage
I have a class library that is shared between multiple Role projects in my solution. Two of these projects are a Web Role and a Worker Role.
They each have the same Configuration Setting:
...