I am experiencing strange behavior with urllib2.urlopen() on Ubuntu 10.10. The first request to a url goes fast but the second takes a long time to connect. I think between 5 and 10 seconds. On windows this just works normal?
Does anybody have an idea what could cause this issue?
Thanks, Onno
5 seconds sounds suspiciously like the DNS resolving timeout.
A hunch, It’s possible that it’s cycling through the DNS servers in your
/etc/resolv.confand if one of them is broken, the default timeout is 5 seconds on linux, after which it will try the next one, looping back to the top when it’s tried them all.If you have multiple DNS servers listed in resolv.conf, try removing all but one. If this fixes it; then after that see why you’re being assigned incorrect resolving servers.