We have a web portal that has a page that allows users to upload up to 5 files at a time. The page just has 5 standard ASP.NET FileUpload controls.
The problem is, we're seeing that when a user is uploading files it brings all other activity on the site to a halt. During the 1-2 minutes the upload takes, we see requests begin to queue up and request throughput drops to zero. As soon as the files finish uploading, everything resumes. (We're using New Relic to show us what is going on)
We're not dealing with an often used feature and the files being uploaded aren't big. However, we've seen the uploading of 4 files at around 70kb each cause this.
Some investigation led me to this blog post. Unfortunately, the product they happen to be selling requires Server 2008 and IIS7 and the client has 2003 and IIS6. In addition, it just doesn't seem that 4 tiny uploads should be having this affect.
So, has anyone else run into this situation or know of something that could have been done wrong in order to cause this problem on such a small scale? Maybe there are incorrect app pool or web.config settings we should be looking at that would be throttling the throughput?