Nice, .... Lao Jack
Clicking the Full Screen button causes the video to crash.
I'm using Internet Explorer 8.
Shane.
How do i set the storage and bandwidth limit on Azure for deployed application?
@jigneshpandya - In general, you don't set limits. That is, you have some limits like 100TB of total storage (blobs, tables, queues) per storage account (up to 5 accounts by default). Are you asking something else?
I just viewed the video on concurrency, and I was puzzled by the "golden ticket" approach to avoiding concurrency issues. If obtaining the golden ticket from the golden ticket queue is a requirement to process the messages in the request queue, then what is the point of having multiple instances of the worker role other than for fault tolerance? It seem as though this paradigm ensures that only one worker role is processing something at any given time, so in terms of processing time for all messages in the queue, this would be far less efficient than having just one instance of the worker role process.
The whole issue with concurrency is to make sure that only one instance is processing the work. The 'golden ticket' approach does not apply to work that can be done in parallel. You would only use that approach when you wanted to ensure that something was done once and only once in an otherwise parallel environment. Make sense?