Azure Worker Role facilitates the development of the background processes. This runs on the azure compute with out the IIS unlike WebRole. A worker role is typically few by Azure Storage queue with tasks and sleep command for timeout.

learn more… | top users | synonyms

3
votes
1answer
32 views

Azure Worker Role not working after upgrade to Azure Tools 2.0

I have updated my Azure project to use Azure Tools 2.0. Now, my worker role is always restarting before hitting the OnStart method. My worker project references Microsoft.WindowsAzure.ServiceRuntime ...
0
votes
2answers
19 views

Using QueueClient.OnMessage in an azure worker role

I have an Azure worker role that is responsible for checking 4 service bus queues. Currently, I just the looping method to manually check the queues. while(true) { //loop through my queues to ...
1
vote
0answers
96 views

The type initializer for 'Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment' threw an exception

I am trying to use Windows Azure Caching to store sessions in a MVC4 application. I build a application following steps from Link but when i try to make object of DataCache using below code line. ...
0
votes
0answers
39 views

How to connect Java with MongoDB in Windows Azure's worker role?

I have a Spring RESTFul web service project that use "Spring Data MongoDB" library to connect with MongoDB database. After successfully testing with my local machine, I am ready to deploy on cloud ...
1
vote
1answer
37 views

Azure Worker Role Copy File from Linux VM

I'm pretty new to the Azure Platform, I have tried to search on Google for any assistance but unfortunately my Google searching skills aren't the best. I have a Linux VM in Azure, the Linux VM ...
0
votes
1answer
24 views

Worker role starts with reasonable memory usage but then memory usage increases constantly

I have a worker role which runs multiple threads(I used ThreadedWorkerRole). My worker role downloads some data and then images related to that data. Everything works fine locally but when I deploy ...
0
votes
1answer
22 views

Publish MongoDB in Windows Azure worker role - Always Busy

I have developed my application with mongoDB and now I'm ready to live in cloud. I have followed the tutorial from official mongoDB website about how to deploy it in windows azure's worker role. I ...
-2
votes
1answer
22 views

Queue mechanism Between WebRole and WorkerRole in Windows Azure Platform [closed]

I am doing project related to windows azure so in which how can I use Queue between web role and worker role????
1
vote
3answers
59 views

How do I detect the case when my Azure role is moved to on a new VM?

Azure can sometimes restart the VM where my role instance is running and sometimes it can stop it on one VM and then deploy it onto another VM - for example if the hardware where the VM was running ...
2
votes
1answer
57 views

Azure - Unhealthy Worker role is not restarting and waiting for the status

I have a worker-role, 4 instances, with external TCP/IP endpoint. After several days running without problems, instances began to die, one after one. In 24 hours all of them were in status: ...
0
votes
1answer
51 views

Is it possible to read EF Code First Connection String from Azure Role Environment

I have an Azure Worker Role which is using Entity Framework Code First (5.0) to talk to a SQL Azure database. Currently I have the connection string in the app.config of the worker role however I ...
3
votes
2answers
60 views

Will Azure ever run 2 instances of my worker role?

I have a worker role that installs a legacy Windows service. If more than one instance of the service ever runs at the same time it would be problematic. So I'm trying to understand if this can ever ...
2
votes
1answer
108 views

MongoDB on Azure: VM or Worker role?

I am interested in hosting a mongoDB on Azure. I believe I have a few options for exactly how I host the db on Azure: a virtual machine or a worker role. What are the pro and cons in each option? ...
0
votes
2answers
88 views

Does Azure Worker Roles get charged $$ when they are Sleeping?

I'm trying to figure out how to (roughly) calculate some expected costs for some worker roles I'm thinking about creating. TLDR; Does azure charge you $$ if your worker is Sleep(someTime) / ...
1
vote
1answer
72 views

Loading Assemblies into a seperate AppDomain in a WindowsAzure WorkerRole

I'm developing an Azure Worker Role that will need to periodically perform actions based on work pulled from a WCF service. Due to the nature of Azure deployments, a decision was made to implement a ...
0
votes
1answer
80 views

Implement Worker Role in Windows Azure

We want to receive signals in Windows Azure Cloud Service and would like some feedback on our strategy. Our current Project: Physical GPS unit that runs as a client. Windows Azure Cloud Service ...
1
vote
2answers
95 views

Accessing the file share from Azure Worker Role

We want migrate our FTP servers in Windows Azure. We created clean virtual machine image and installed FTP Server there. Now, to be able to process the files resided in the FTP directory ,directly ...
1
vote
1answer
81 views

Looking for tuturial for inter-communication between roles in Windows Azure without service bus queue

I want web role to send commands to a worker role and when worker role done- send result back to web role. (e.g. online calculator that do the taks proccess in seperate worker role) I'm looking for ...
2
votes
0answers
28 views

Azure Endpoints Protocol Differencess

Hello I was wondering during the development, what are the differences between the types of protocols that I can use for my endpoint? the latest SDK had, HTTP, HTTPS, UDP and TCP. I certainly ...
0
votes
1answer
26 views

Worker role works on simulators and fails on cloud, how to start debugging?

I am new to windows azure, and i have made a worker role that i tested on the simulator and works fine (it should send an email and it does), however it sends me no email if i publish it on the cloud. ...
2
votes
2answers
307 views

Deploying Multiple Web Roles and Worker Roles on a Single Azure Cloud Service

This may not be new, but I hope some one can put me on right track as its bit confusing during azure deployment. I'm in the process of planning for deployment on Azure. This is what I have A Public ...
0
votes
1answer
97 views

Windows Azure Console for Worker Role Cloud Service

I have a worker role cloud service that I have recently developed on my local machine. The service exposes a WCF interface that receives a file as a byte array, recompiles the file, converts it to ...
1
vote
1answer
182 views

using SignalR in Windows Azure worker role(s) and in web role(s)

Can you create a Hub that you can send messages to clients from worker roles and web roles, or have multiple different worker roles that can sent messages to clients? Or is the recommend way to sent ...
1
vote
1answer
155 views

WaHostBootstrapper Error After Installing SDK 1.8

I've recently upgraded our Azure SDK to 1.8 (From 1.6). On deploying all our web and worker roles come online without issue except for 1. This 1 worker role is the only 1 with 2 instances (The rest ...
1
vote
2answers
239 views

Deploy a Web Role and Worker Role in a single instance

I'm developing a scalable app and I use the web role, queue, worker role design... But right now (in the alpha tests phase) i'm concerned a little about cost cutting because i'm suffering from the ...
2
votes
3answers
195 views

Quartz.net on Azure The time zone ID 'Coordinated Universal Time' was not found

I'm using Quartz.Net on Azure worker role (hosted in west europe zone) and for some reason my schedulder is not working throwing this error: An error occurred while scanning for the next trigger ...
0
votes
1answer
24 views

Shared state between CloudService instances

Im creating a multiplayer game where one player hosts a game session and where others can join that session. The problem im having is how to make sure all players within a session has access to the ...
0
votes
2answers
85 views

Match a Deployment ID in Windows Azure

I have several different services running the same code base as windows azure worker roles. I'm trying to test and see if the currently executing code is running in a specific instance. If I call to ...
2
votes
2answers
94 views

Azure Queue Storage - Mark messages as visible immediately after calling CloudQueue.GetMessages()

Problem: I am reading messages from a Azure Storage Queue and then inserting them into a Storage Table using a Worker Role. I want to read in messages but only process them if there are at least ...
0
votes
1answer
189 views

Windows Azure in-role caching vs shared cache

We have a website in Azure and we want to cache the content on the website. The app that will update the content will be outside Azure. We got this scenario working with Shared Cache. Shared caching ...
2
votes
1answer
60 views

Elmah Logging On Azure Worker Role?

Does anyone know how to configure Elamh for an Azure worker role? I've installed it but it doesn't seem to do anything - when exceptions occur they don't get logged. It works perfectly in my MVC ...
2
votes
2answers
135 views

Azure cloud service - Does VIP swap cause OnStop() to be invoked?

I have an Azure cloud service with a web and a worker role. When an Azure cloud service is stopped, the OnStop() method is invoked. On a VIP swap, does it call the same OnStop() method on the ...
1
vote
2answers
251 views

Can we have a worker Role and a web role in a single instance of Azure Cloud Services

I am just about to move my website, database with a background scheduler onto Azure platform. Since Website feature is still in preview mode, I assume there won't be any SLAs from Microsoft covering ...
0
votes
2answers
144 views

How to send messages between web role and worker role other than Service Bus?

I have been using azure service bus to send messages to and fro between web role and worker role and i really thought that it was a really good solution but lately i have found that service bus is ...
1
vote
0answers
139 views

Azure worker role won't start

I'm in alpha w/ a product using a backend worker role. The worker role worked about 2 weeks ago but recently I repushed some new stuff and everything seems to be OK except the worker role is not doing ...
1
vote
1answer
139 views

Mongodb worker role throws System.IO.FileNotFoundException

I have an Azure cloud project which makes use of mongodb worker roles. When running in the local emulator everything works fine, however when I deploy to an Azure staging area, the mongodb worker ...
0
votes
1answer
42 views

Using librets(PInvoke) in worker role

I am trying to create a worker role to download data from RETS server using librets.net. librets.net is a wrapper on a c++ library librets. I tried both 32 bit and 64 bit version and followed this ...
0
votes
1answer
47 views

connect to mobileservice from cloud azure

my problem is I have created a mobile service which I want to connect to through a cloud computer to keep the tables up to date. I have been able to get a message back from the mobile,service using ...
0
votes
0answers
61 views

Unable to connect to any slaveOk member of the replica set - Server at address … does not have a replica set name

I have downloaded and set up (edited the connection strings) the mongo db worker role project available here, and deployed it to Windows Azure. However when I use the Manage web role to view the ...
1
vote
1answer
67 views

Best practice to install Windows service on Windows Azure

After searching over the Internet I found 2 ways to install an existing Windows service project on Windows Azure. Create setup and add it startup task of web/worker role and spin up that role so it ...
0
votes
1answer
124 views

How does the service bus QueueClient.Receive work?

I am using service bus queues to communicate between web role and worker role. I have two queues in my service bus. I am putting a message into the queue from web role and the worker role processes ...
2
votes
1answer
313 views

How to use a Timer to replace Thread.Sleep(…) in an Azure Worker Role?

There's plenty of examples of people saying to use a Timer instead of Thread.Sleep(...) in an Azure Worker Role. No probs with that. What I'm struggling to understand is how to code this. Currently, ...
0
votes
1answer
136 views

nservicebus worker role in azure restarting due to databus configuration issue

I have two worker roles setup as nservicebus endpoints (nservicebus 3.2.8) and both use AzureDataBus configurations for messages that are larger than the size allotted for azure queues. My employer ...
1
vote
3answers
64 views

Understanding how apps in roles are served in Azure

The company I work for is looking to develop a few apps against the cloud. An ASP.NET Web Api application hosted in an Azure web role. A Windows Server type application hosted in an Azure worker ...
0
votes
0answers
54 views

How to convert the object with only modified properties values, remaining values should be null?

Using Reflection I got the collection of modified columns for the Object. IEnumerable<string> modified = GetModifiedColumns(); I would like to modify the object like below EmployeeModel ...
1
vote
0answers
148 views

UDP multicast in Windows Azure cloud service

Is there any support for multicast UDP within a Windows Azure cloud service? I've set up internal endpoints for the UDP protocol in my roles, but my guess is that they're only opened for the IP ...
1
vote
1answer
75 views

ServiceBus : Asynchronous MessageSender.BeginSend() , Should I put Thread.Sleep()

Working Code here static MessageSender TopicClient; public static void SendTopicMessage(BrokeredMessage message) { IAsyncResult result = TopicClient.BeginSend(message, processEndSend, TopicClient); ...
3
votes
3answers
310 views

Windows azure Worker Role weekly email sending [closed]

How to send weekly email report using Worker Role in windows azure application
0
votes
1answer
106 views

nservicebus, azure and transaction scope

I have a strange thing going on that i suspect is related to transaction scope within nservicebus, but thought i should ask before i go off in the wrong direction. Here is my issue: I have an ...
0
votes
4answers
175 views

Azure Worker Role Asynchronous Receive message: how long I should put the sleep for? (milliseconds)

Sample code here public override void Run() { while (true) { IAsyncResult result = CUDClient.BeginReceive(TimeSpan.FromSeconds(10), OnMessageReceive, CUDClient); Thread.Sleep(10000); ...

1 2 3 4 5 7