我在Go上使用Google App Engine上的urlfetch超时时遇到问题。该应用程序似乎不需要超过大约5秒的超时(它忽略更长的超时并在其自己的时间后超时)。
我的代码是:
var TimeoutDuration time.Duration = time.Second*30
func Call(c appengine.Context, address string, allowInvalidServerCertificate bool, method string, id interface{}, params []interface{})(map[string]interface{}, error){
data, err := json.Marshal(map[string]interface{}{
"method": method,
"id": id,
"params": params,
})
if err != nil {
return nil, err
}
req, err:=http.NewRequest("POST", address, strings.NewReader(string(data)))
if err!=nil{
return nil, err
}
tr := &urlfetch.Transport{Context: c, Deadline: TimeoutDuration, AllowInvalidServerCertificate: allowInvalidServerCertificate}
resp, err:=tr.RoundTrip(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
result := make(map[string]interface{})
err = json.Unmarshal(body, &result)
if err != nil {
return nil, err
}
return result, nil
}
无论我尝试将TimeoutDuration
设置为什么,该应用程序在约5秒后超时。怎么阻止它这样做?我的代码中有错误吗?
答案 0 :(得分:12)
您需要像这样传递持续时间(否则默认为5秒超时):
tr := &urlfetch.Transport{Context: c, Deadline: time.Duration(30) * time.Second}
2016年1月2日更新:
使用新的GAE golang包(google.golang.org/appengine/*
),这已经改变了。 urlfetch
不再在运输中收到截止时间。
您现在应该通过新的上下文包设置超时。例如,这是您设置1分钟截止日期的方式:
func someFunc(ctx context.Context) {
ctx_with_deadline, _ := context.WithTimeout(ctx, 1*time.Minute)
client := &http.Client{
Transport: &oauth2.Transport{
Base: &urlfetch.Transport{Context: ctx_with_deadline},
},
}
答案 1 :(得分:3)
尝试以下代码:
// createClient is urlfetch.Client with Deadline
func createClient(context appengine.Context, t time.Duration) *http.Client {
return &http.Client{
Transport: &urlfetch.Transport{
Context: context,
Deadline: t,
},
}
}
以下是如何使用它。
// urlfetch
client := createClient(c, time.Second*60)
礼貌@gosharplite
答案 2 :(得分:2)
查看Go的appengine的源代码:
和protobuffer生成代码:
看起来持续时间本身应该没有问题。
我的猜测是5秒后整个应用程序内部的appengine超时。
答案 3 :(得分:1)
对我来说,这很有效:
ctx_with_deadline, _ := context.WithTimeout(ctx, 15*time.Second)
client := urlfetch.Client(ctx_with_deadline)