azure-worker-roles Questions

2

Solved

In the "on premise" world, when creating an application like a Windows Service I'd classically use an App.config file to store a variety of configuration information about the application, from dat...
Schoonmaker asked 16/1, 2013 at 12:50

2

Solved

Can I add a Worker Role to a standard MVC4 Website which I am deploying to Azure Websites? I haven't seen any documentation on how to add a worker role to these deployments. I hope I don't have t...
Bedizen asked 4/1, 2013 at 23:39

1

Solved

I'm trying to get trace logs for my worker role in windows azure but it's not working and cannot see any error. I've configured my application to use azure diagnostics as explained here: https://w...
Directorate asked 23/11, 2012 at 21:40

2

I have an Azure WorkerRole that is stopping (no exceptions are being thrown) for no apparent reason. It stops in the same spot every time, but the code is simply executing a process that takes abou...
Finedrawn asked 1/12, 2010 at 21:42

2

Solved

I am trying to use Slow Cheetah to switch between a local db connection string and a SQL Azure connection string. This is in a Azure worker role that I am pushing to Azure with TeamCity. When I loo...
Interdependent asked 18/3, 2012 at 0:43

5

Solved

I now have my Windows Azure environment set up so that I can access my Worker Role with Remote Desktop. However, I'm not sure how to proceed at the moment. After much digging I found a web site tha...
Connoisseur asked 4/7, 2011 at 23:40

2

Solved

I'm working on a worker role failover solution and I need to be able to test and debug the failover mechanism by shutting down or restarting instances as well as creating new ones. How do I resta...
Imogeneimojean asked 24/8, 2012 at 15:55

1

Solved

I'm running into an issue where my deployment loops through Recycling. From Visual Studio: "Role instances recycled for a certain amount of times during an update or upgrade operation. This indic...
Despoil asked 21/6, 2012 at 17:12

3

How can I setup Windows Azure to multiple worker roles is running on the same instance? Is it possible?
Compiler asked 31/5, 2012 at 6:28

1

Solved

I have a C# .Net 4 class library that I think I have set up to be an Azure Worker Role, i.e. the class implements Microsoft.WindowsAzure.ServiceRuntime.RoleEntryPoint and has a Run() and an OnStart...
Deutero asked 31/5, 2012 at 8:26

4

Solved

In Azure, Where should I store physical files that need to be accessed by a Worker Role? In my case I would normally store these particular files in my Web Role's App_Data folder but I don't belie...
Foucquet asked 16/4, 2012 at 10:43

1

Solved

I understand that in a Windows service, it is better to use Timer rather than Thread.Sleep(timeout). However, in all code examples I could find on the Internet that were handling Azure workers, it ...
Coauthor asked 5/3, 2012 at 4:44

5

Solved

I have a worker role that works perfectly in development but doesn't work when deployed. "Doesn't work" is rather vague, but that's really all I have to go on as I'm not seeing any errors or anythi...
Waterproof asked 23/2, 2012 at 9:31

1

Solved

I am a beginner with Windows Azure and I want to make an app which does facial recognition on a video stream. Hence I need to install OpenCV (C++ Library). How do I do that? And how do I get the vi...

4

Solved

Is it possible to deploy multiple roles in the same instance? I have three web roles (website in asp.net mvc3, and two WCF services instances) and two worker roles (windows services). The load fo...
Siegbahn asked 18/2, 2012 at 17:40

2

Solved

Can I have a Web Role and a Worker role run on the same instance, or do I have to obtain 2 separate hosting instances and pay twice the amount I would otherwise? I have a WCF Web API that I want t...
Rein asked 10/2, 2012 at 23:38

1

Solved

The run method of my worker role is: public override void Run() { Message msg=null; while (true) { msg = queue.GetMessage(); if(msg!=null && msg.DequeueCount==1){ //delete message ...

1

Solved

Scenario: if I've spin off multiple Worker roles or ONE Worker role with multiple threads, which polls the new messages in Azure Queue. Could someone please confirm if the this the correct design...

2

Solved

Some background.... We're venturing into Azure for the first time and are trying to do it in baby steps. For now, our first apps are going to be worker roles monitoring queues to process requests ...
Brister asked 18/8, 2011 at 17:9

1

Solved

I have a windows service that I need to migrate to onto Azure as a Worker Role. Everything builds fine in my Azure solution. However, when I upload everything only the web role starts. The worker r...
Apartment asked 11/8, 2011 at 21:14

3

Solved

a newbie question. I've done plenty Java dev (e.g. GAE) and mobile dev such as iOS and Android. I am investigating Windows Azure as the platform for our server-side services that our mobile devices...
Blockage asked 8/8, 2011 at 20:27

3

Solved

I want to do multiple operations in a single worker role. How to create threads in worker role?
Thereof asked 18/2, 2011 at 12:15

2

Solved

I see how Azure checks the status of my worker role periodically, but how? There is no method in RoleEntryPoint to do that, and I'm taking a look on Microsoft.WindowsAzure.ServiceRuntime's classes...
Impish asked 21/3, 2011 at 17:18

4

Solved

I have several WorkerRole that only do job for a short time, and it would be a waste of money to put them in a single instance each. We could merge them in a single one, but it'd be a mess and in t...
Ellingston asked 15/3, 2011 at 14:22

3

Solved

I know that you can only have 1 web role per instance but does this apply to Background roles as well? In more detail can 1 instance run a background role and a web role?
Benedict asked 27/8, 2010 at 8:48

© 2022 - 2024 — McMap. All rights reserved.