The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

Modelling large scale web-application infrastructure?

I am looking for an industry standardised notation and methodology for showing these connections and a little bit of detail as to what data is being transferred at each step. Here is my ad-hoc ...
-2
votes
0answers
13 views

Un handled Async creating Pending Worker Process Requests [closed]

What are the issues concerning async asp.net handlers that don't complete. I have an async ashx that for some reason is not executing properly on production. I cannot reproduce it through testing.This ...
1
vote
2answers
55 views

What is the appropriate number of Gunicorn workers for each Amazon Instance Type?

I'm currently trying to figure out what the appropriate number of workers is for each Amazon Instance Type. I used to run one Gunicorn worker, however that proved to be quite slow. Many developers ...
1
vote
1answer
65 views

Rebus and distributed workers

We are currently evaluating Rebus and NServiceBus. Does Rebus have anything similiar to NServiceBus's distributed workloader yet? Its a bit hard to discern from the docs :). Kind regards Christian
1
vote
1answer
70 views

How do I make a For..Each value not literal in % { dir IIS:\AppPools\$_.Name }

Here is what doesn't work >dir IIS:\AppPools\ | % { dir IIS:\AppPools\$_.Name\WorkerProcesses } More Info I want to use Powershell to get the PID of each Application pool. I understand that I ...
1
vote
2answers
372 views

How prevent CPU usage 100% because of worker process in iis

My cpu usage is 100% most of the the time in windows server 2008-r2 (my own vps - vmware - quad core - 4 gig ram)! when i open windows task manager and go to resource monitor i see that 100% usage is ...
2
votes
1answer
95 views

Can Lost Update happen in read committed isolation level in PostgreSQL?

I have a query like below in PostgreSQL: UPDATE queue SET queue.status = 'PROCESSING' WHERE queue.status = 'WAITING' AND queue.id = (SELECT id FROM queue WHERE STATUS = ...
0
votes
0answers
55 views

website down in single node of a web farm

We have hosted our web site in a web farm. On trying to access the web site from individual nodes(through IPs) the website opens correctly in two nodes but fails in third one. Not a code issue: It ...
2
votes
2answers
283 views

Can I get the Process ID of a worker process in a web application?

I have an application that runs in an application pool that has muliple worker processes. I need to access the process id in the controller to check some issues I have since I changed the application ...
1
vote
1answer
364 views

IIS 7 Application Pool work process life and Session life

In IIS7 Application Pool there is a setting Idle-time out default is 20 min, which says : Amount of time(in minutes) a worker process will remian idle before it shuts down, A woker process is ...
1
vote
1answer
123 views

How to run rake task as a worker process on Heroku?

Let assume that I have scaled Heroku application to 1 worker process, but how to specify that the rake task with particular name should run as a worker process?
0
votes
3answers
2k views

.Net Framework 1.1 on IIS 7.5 (Windows 7-64 bit)

I'm in a situation where i will need to get my .Net 1.1 codebase setup in Windows 7, 64 bit machine that has IIS 7.5. I tried all possible blog posts including: .NET Framework 1.1 on IIS 7, using ...
0
votes
0answers
189 views

How to configure .Net 1.1 code base on IIS 7.5 (Windows 7-64 bit)

I have an old .Net 1.1 application that used to run on Windows XP. I could configure my source code on IIS 5.1 and debug. After a recent move to windows 7 - 64 bit, i don't know how to configure the ...
0
votes
0answers
93 views

Cache-concious design of Master-Worker processes

I recently started working on a server application designed with the familiar Master-Worker pattern with threads, where one privileged thread manages several worker threads. I have now realized how ...
0
votes
2answers
136 views

Boss-Worker model design

I am developing a code using Boss-Worker model pattern. I have a doubt. The list which the Boss will be adding to, is a member of the Boss class. In order for the Worker to access it, I am making the ...
2
votes
1answer
394 views

WCF service running under custom identity resets connection for WSDL's XSD includes

I have requirements to configure IIS 6 to host a WCF service targeting .NET Framework 4.0 using a custom identity for the worker process. The identity is a highly restricted domain account that is ...
2
votes
0answers
65 views

How to configure queue_classic logging

I couldn't find anywhere a solution on how to make queue_classic write logs to a file. Scrolls, which Queue_Classic uses for logging, doesn't seem to have any example either. Could someone provide a ...
1
vote
2answers
301 views

What is the difference between Start Debugging and Attach to Process

My project loads significantly faster when I attach it to my w3wp.exe IIS worker process, than when I "Start Debugging". However, the same worker process seems to be processing the same amount of ...
0
votes
1answer
727 views

IIS Worker process hangs forever on first request

I am working on solving a problem that I have had for a couple of days now. Every time one of my sites are rebuild or the AppPool is recycled, the first pageload will hang forever (well, I've only ...
0
votes
1answer
278 views

What is a high thread count in IIS7 Worker Process Indicative Of?

I'm currently experiencing some problems with my server. I have a pool which is consistently deadlocking. It is an IIS7 Worker Process in Integrated mode. I've recently noticed that in Task Manager ...
0
votes
2answers
214 views

Website is not responding when a handler is processing

In my web site I have a handler (GetFile.ashx) which, when executed, lets you download a file at a given download rate. The handler needs to be executing until the user finishes download. The problem ...
0
votes
0answers
224 views

asp.net web application does not load when worker process running

I setup a web application which was running fine but after doing some testing, I ran it on my server and since the back end job was long, I let it run. Now I tried to load the web application from ...
3
votes
5answers
775 views

IIS worker threads issue

I have my site hosted on IIS hosting. Site has feature that needs calling WCF service and then return result. The issue is that site is processing calling to WCF service another web site calling is ...
0
votes
1answer
322 views

Rapid-Fail Worker Processes

in ISS my application pool is shutdown due to Rapid-Fail Protection for Worker Processes now how can i identify that why Worker Process fails?? I looked into log but couldn't find some thing ...
2
votes
1answer
300 views

ASP.NET Worker process getting killed when web app is inactive

My hosted ASP.NET MVC app takes long time (10-20 secs) when it launches. And after ASP.NET worker process is running, everything is normal. Problem is that the worker process is getting killed when ...
1
vote
0answers
136 views

How to control number of running worker processes for MongoDB?

Well, as the question simply explains itself, let me clear it up little more. I am running MongoDB primarily for read-only purposes at back-end. My crons do the writes and they don't really push it ...
0
votes
1answer
354 views

Question about Job Queue management for PHP developer new to using worker processes

I'm attempting to create my first load-balanced PHP application that makes use of worker processes/servers. I use cloudcontrol for my hosting since they provide the convenience of a managed server ...
0
votes
1answer
303 views

Which IIS settings will allow me to process long-running ColdFusion requests without IIS giving up?

I have a web site that allows users to select some checkbox settings, save them as reports in a database, and come back to run them at any time. Some of these saved reports can take a little over ...
0
votes
2answers
724 views

IIS Application Pool Process Using A lot of Memory

I have a very weird problem with one of my IIS application pool processes. Ive been getting a System.OutOfMemoryException error lately and ive been trying to figure out exactly what is going on. ...
0
votes
1answer
130 views

How to prove the application working on web farm?

I have created a application that is the custom session mode and session bridge between asp and asp.net application. Now, I need to prove that is working or not. So, I have created an asp.net page. In ...
2
votes
2answers
4k views

What is worker process recycling…?

I would like to know what is exactly worker process recycling? What exactly it does at the time of worker process recycling? Worker process resides in application pool and can be configured through ...
1
vote
1answer
1k views

What are the effects of increasing number of worker process for a sharepoint application hosted in Windows Server 2003

I have a sharepoint application hosted on a windows 2003 server with the maximum number of worker process set as 1 in the application pool. There are couple of sharepoint application hosted and one of ...
3
votes
3answers
10k views

IIS 7 worker process bottleneck, large number of awaiting requests under application pool ASP.NET 3.5 + 2.0

I am using ASP.NET 2.0, .NET 2.0 Framework, and IIS 7. I am seeing a large queue of "requests" appear under the "worker process" option. State recorded appear to be Authenticate Request and Execute ...
8
votes
5answers
2k views

Seamless deployment in ASP.NET (IIS kills worker process before new worker proces is ready)

I am trying to deploy a .NET Web application to IIS (7.5) without any hassle for the users. I have made sure that Disable Overlapped Recycle is False but i still run into the same problem every time. ...
3
votes
1answer
588 views

Max tasks in TPL?

I want to use TPL in Worker process on Windows Azure. I'm looking to add an IJob the queue, this has a Run method, so the worker will consist of: loop get item off queue Use TPL to call ...
2
votes
1answer
980 views

Impact of Recycling Worker Process on WCF Service

i want to know what is the impact (in performance, availabillity, etc) that Recycling the Worker Process (IIS V 6.0) has over a WCF Service Hosted in IIS, i would also like to know if there's a best ...
2
votes
1answer
885 views

Programmatically find when the ASP.NET worker process and app domain last started?

In ASP.NET: How can I tell when the ASP.NET worker process last restarted? In ASP.NET, how can I tell when the app domain last recycled?
1
vote
2answers
444 views

Prevent IIS from reusing worker processes for separate ASP.Net AppDomains

When IIS restarts an ASP.Net (2.0) web application, it can either: Recycle the AppDomain: Unload the AppDomain and load a new AppDomain on the same process (e.g. when HttpRuntime.UnloadAppDomain() ...
0
votes
1answer
280 views

Do external references slow down my ASP.NET application? (VS: Add Reference dialog)

I've noticed as my website gets bigger and bigger, the time my laptop takes to display my page is much longer then say a new projects with minimal references. I think there are two variables at play ...
2
votes
0answers
324 views

C# Worker process garden framework

Here is the situation, I have a worker process that is automating Internet Explorer (via AxSHDocVw). This worker process is launched via a custom Windows service on the OS shell. I need to run ...
2
votes
2answers
1k views

Quicker way to attach to the worker process in VS

I'm using VS 2010. And in VS 2010 it's even more painful now to attach to the worker process when you want to test your local IIS site via IIS, not the VS built-in web server. It's more painful ...
3
votes
1answer
2k views

Singleton object in IIS Web Garden

I have a lot of Singleton implementation in asp.net application and want to move my application to IIS Web Garden environment for some performance reasons. CMIIW, moving to IIS Web Garden with n ...
1
vote
2answers
369 views

System architecture: simple approach for setting up background tasks behind a web application — will it work?

I have a Django web application and I have some tasks that should operate (or actually: be initiated) on the background. The application is deployed as follows: apache2-mpm-worker; mod_wsgi in ...
17
votes
2answers
17k views

ASP.NET Web Garden - How Many Worker Processes Do I Need?

What is the best practice for deciding how many worker processes to allow for an ASP.NET web application? On one server I manage, creating a new AppPool defaults to 10 (maximum) worker processes. ...
11
votes
3answers
8k views

ASP.NET session state and multiple worker processes

I need to understand something about ASP.NET session state, as it applies to IIS 7 and ASP.net 3.5. If an application is configured to use in-process session state, will that work OK if there are ...
1
vote
1answer
116 views

.NET Tear Down a Windows Service

I'm in the middle of building a simple windows service and I'm running into a small issue. The service runs just fine, the OnStart method creates a worker process that listens for incoming UDP ...
1
vote
3answers
350 views

Building a worker thread pool for a non-thread-safe code

What's the best way to wrap non-thread-safe code in the .net framework? I've got a third-party library that isn't thread safe due to its use of static variables. Rewriting it isn't an option. This ...
7
votes
2answers
2k views

IIS, multiple CPU cores, application pools and worker processes - best configuration for a single site?

We use Kentico CMS and I've exchanged emails with them about a web garden deployment. We have a single site running on a server with 8 cpu cores. In line with Kentico's advice, we have not altered ...
5
votes
2answers
6k views

When does IIS recycle the worker process?

When I setup an application pool for my web app in IIS 6 it defaults the worker process to recycle in 1740 minutes (29 hours). Does this recycle happen even if there is activity on the web site or ...
2
votes
1answer
854 views

Classic ASP session and Web Garden (multiple workers)

We are having issues with IIS6 slowdowns when using more than 1.2GB of RAM in a single worker and would like to use more workers. However looks like ASP sessions are made by worker and when the ...

1 2