azure-worker-roles Questions
3
Solved
I'm using Azure Service Bus to manage messages with a webrole and workerrole.
I need to know how can i get multiple messages from queue at once without using a loop.
Redblooded asked 7/6, 2012 at 20:39
2
Solved
I'm currently porting a WCF Service Project over to an Azure Role. Until now the library containing the service also hosted a Quartz.Net JobFactory for some lightweight background processing (perdi...
Precursory asked 6/6, 2011 at 7:47
7
Solved
I sometimes encounter code in the following form:
while (true) {
//do something
Thread.Sleep(1000);
}
I was wondering if this is considered good or bad practice and if there are any alternativ...
Marxismleninism asked 12/5, 2014 at 18:45
2
I'm implementing the PASV mode in a FTP server, and I send to the client the IP address and port of the data end point. This is stupid because the IP is actually where the client is already connect...
Unbending asked 16/3, 2011 at 17:19
1
We have a requirement to create large (1G-16G) row data reports compress and encrypt them.
Our customers will consume those reports over sFTP. We are replacing an existing implementation so our cu...
Fornax asked 11/2, 2014 at 19:49
5
I have an Azure hosted web application which works alongside a number of instances of a worker role. Currently the web app passes work to these workers by placing messages in an Azure queue for the...
Warnock asked 4/3, 2012 at 8:26
4
The application I work on contains a web role: it's a simple web application. I needed to host the application in Windows Azure, so I created a web role. I actually want to know what these roles ar...
Bar asked 19/8, 2011 at 8:34
2
I'm using the Worker Role machines (Medium -> 2 Cores with 3,5 GB of Ram) to do massive work, and I'm able to use 100% of the CPU (of both cores) and 85% of RAM.
During this work, each takes aroun...
Sapor asked 17/7, 2013 at 8:48
2
Solved
How can I locally test the RoleEnvironment.Changing event using the Azure SDK 1.7? Which file do I have to change and do I have to run any other command after that file is changed?
The information...
Keos asked 1/8, 2012 at 16:58
1
Let's say I have:
public abstract ServiceBase : RoleEntryPoint {
...
}
public MyRealService : RoleEntryPoint {
...
}
Will my Azure WorkerRole project be able to correctly figure out MyRealSer...
Biotin asked 8/10, 2013 at 16:16
1
Solved
I work on a hosted service which has Windows Azure Cache deployed on instances of the web role. The cache is enabled on production but in the compute emulator we disable it since we often experienc...
Dentation asked 7/10, 2013 at 17:50
1
Solved
I'm having a hard time understanding the RetryExponential class that is used in conjunction with QueueClients (and I assume SubscriptionClients as well).
The properties are listed here, but I don'...
Wera asked 28/8, 2013 at 22:57
2
Solved
Pushing full cloud service project on to cloud is very time consuming, so if its some minor changes and I want them to reflect immediately then i RDP into the web role and make those changes and re...
Strick asked 26/8, 2013 at 14:45
1
Solved
Is it possible to programmatically spawn new instances of a worker role?
I have a worker role that's dependent on some Service Bus queue(s) where it grabs the messages and puts the data into Table ...
Rowan asked 26/8, 2013 at 12:57
1
Solved
In the process of building my first AZURE based application using WCF services I have stumbled across a number of examples where people show how one can host a WCF Service inside a Worker Role.
Su...
Destitution asked 23/7, 2013 at 0:55
1
Solved
In my cloud service I have one web role and worker role. I changed my web role VM size from medium to A6.
When I tried to deploy to Windows Azure, I get the following error message:s seem prompt m...
Theophilus asked 2/7, 2013 at 10:0
4
Solved
I have a simple work role in azure that does some data processing on an SQL azure database.
The worker basically adds data from a 3rd party datasource to my database every 2 minutes. When I have tw...
Hindrance asked 13/1, 2011 at 18:7
1
Solved
I have azure worker role: ImportDataWorker but when I set it up as startup project it doesn't allow me to run the project:
Absolutely asked 3/6, 2013 at 11:58
1
Solved
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 che...
Katushka asked 23/5, 2013 at 13:13
1
Solved
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? M...
Restive asked 18/4, 2013 at 18:29
2
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 Publ...
Chenee asked 25/3, 2013 at 11:42
2
Solved
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 ...
Stronghold asked 19/3, 2013 at 13:26
2
Solved
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 out...
Glarum asked 11/3, 2013 at 9:7
2
Solved
I am just about to move my website, database and a background scheduler onto the Azure platform.
I've to use cloud services with web & worker role. Now my question is that do I need separate ...
Setting asked 4/3, 2013 at 22:13
1
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...
Hardnett asked 5/2, 2013 at 12:34
© 2022 - 2024 — McMap. All rights reserved.