Getting lots of i/o timeouts
Opened this issue · 2 comments
I am running the "full" example found in "example" folder with a seed of https://moz.com/top500/domains. I am getting a bunch of i/o timeouts and can't trace what is wrong. For instance:
[ERR] HEAD http://bbc.com - Head http://www.bbc.com/: dial tcp: lookup www.bbc.com on 127.0.1.1:53: read udp 127.0.0.1:53755->127.0.1.1:53: i/o timeout
I have also tried the other examples and get the same result. I am running Ubuntu 16.04 and Go1.8 linux/amd64.
thank you
Hello,
It's possible that you hit all kinds of network errors, the example code simply uses the default HTTP client but you can use an HTTP client configured the way you want with fetchbot. This isn't related to the package itself, it depends on your network settings, where you are, your ISP, etc.
Martin
Turns out you were right. I was using Google's DNS servers on my router. I removed that and everything is working fine. Thanks!