8

This is my test code, I set 6s timeout, but the program execute only for 3s, Why?

package main

import "net"
import "time"
import "fmt"

func main() {
    fmt.Println(time.Now())
    conn, err := net.DialTimeout("tcp", "google.com:80",6*time.Second) // chinese people can't access google
    fmt.Println(time.Now())
    fmt.Println(conn,err)
}

Test result:

2016-05-18 16:21:31.325340213 +0800 CST
2016-05-18 16:21:34.32909193 +0800 CST
<nil> dial tcp 59.24.3.173:80: i/o timeout
Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
rox
  • 525
  • 7
  • 16

1 Answers1

0

Your code is OK, your network/internet connection/route to the internet has problem.
For example if a router/device between you and google overloaded (or any problem...) it may drop some packets every some seconds, my guess.

My test result:

10 192.0109ms 3 &{{0xc082082900}} <nil>
9 192.0109ms 3 &{{0xc082082780}} <nil>
8 192.0109ms 3 &{{0xc082082000}} <nil>
7 197.0112ms 3 &{{0xc082015c80}} <nil>
6 227.0129ms 3 &{{0xc082082300}} <nil>
5 372.0212ms 3 &{{0xc082082180}} <nil>
4 375.0214ms 0 &{{0xc082015e00}} <nil>
3 375.0214ms 3 &{{0xc082082600}} <nil>
2 375.0214ms 3 &{{0xc082082480}} <nil>
1 378.0216ms 3 &{{0xc082082a80}} <nil>

then I disabled network connection:

10 1.0000572s 0 <nil> dial tcp: i/o timeout
9 1.0000572s 3 <nil> dial tcp: i/o timeout
8 1.0000572s 3 <nil> dial tcp: i/o timeout
7 1.0000572s 3 <nil> dial tcp: i/o timeout
6 1.0000572s 4 <nil> dial tcp: i/o timeout
5 1.0000572s 4 <nil> dial tcp: i/o timeout
4 1.0000572s 4 <nil> dial tcp: i/o timeout
3 1.0000572s 4 <nil> dial tcp: i/o timeout
2 1.0000572s 4 <nil> dial tcp: i/o timeout
1 1.0000572s 4 <nil> dial tcp: i/o timeout

the Test Sample Code with 10 Concurrent tests:

package main

import (
    "fmt"
    "net"
    "time"
)

type res struct {
    d time.Duration
    t int64
    n net.Conn
    e error
}

func check(c chan res) {
    t := time.Now()
    conn, err := net.DialTimeout("tcp", "google.com:80", 1*time.Second)
    d := time.Now().Sub(t)
    c <- res{d, (t.UnixNano() - t0) / time.Millisecond.Nanoseconds(), conn, err}
}

var t0 int64 = time.Now().UnixNano()

func main() {
    numberOfJobs := 10
    c := make(chan res, numberOfJobs)
    for i := 0; i < numberOfJobs; i++ {
        go check(c)
    }
    for r := range c {
        fmt.Println(numberOfJobs, r.d, r.t, r.n, r.e)
        numberOfJobs--
        if numberOfJobs == 0 {
            break
        }
    }
}