vote up 0 vote down star
1

Hi all.

I have implemented a multithreaded crawler in C#. Using a custom threadpool, there's a job queue, all pages to be downloaded are queued up and each thread takes one and downloads.

using 15 threads, When crawling one site only, it's smooth as silk and gets done fast. When crawling several sites on different servers at the same time, I get TONS of timeouts.

Might this have anything to do with DNS resolve? What would you think would cause this to happen?

Thanks. Roey

flag

29% accept rate
So if you are running 15 threads, each accessing a different server, you get timeouts from all of them? – Sesh Jun 6 at 4:08
It's not consistant.. some servers give me loads of timeouts, some don't.. Running on each server independently (but with the same number of threads) produces almost no timeouts. – Roey Jun 6 at 12:35

2 Answers

vote up 0 vote down

There is a connection limit for HttpWebRequest as described here. See HttpWebRequest.ServicePoint.ConnectionLimit in MSDN.

link|flag
I have this set to 100000.. – Roey Jun 5 at 22:52
Roey, do you solve it? I have similar problem. – fravelgue Jun 26 at 10:35
vote up 0 vote down

Presumably, you are running this on Windows. While you may be configuring the number of connections allowed by HttpWebRequest, this does not change the Windows-imposed limits. For example, it is my understanding that with XP SP2, Microsoft imposed a 10 connection per second limit. If you have a large backlog of connections waiting to be allowed to open, they could be running into timeouts due to not being granted permission in time.

Admittedly, I don't have a whole lot of insight into the issue since I've never run into the problem. Try throttling back the number of connections you are trying to make and see if that reduces timeouts.

link|flag
I think the connection limit is per server - not more than 10 live connections to one server. His crawler is talking to more than 1 server. – Sesh Jun 6 at 4:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.