-
Notifications
You must be signed in to change notification settings - Fork 46
/
client.go
101 lines (84 loc) · 2.6 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package auth
import (
"context"
"log"
"math"
"net"
"net/http"
"net/url"
"runtime"
"strconv"
"time"
"github.com/hashicorp/go-retryablehttp"
)
type httpClientParams struct {
instanceMetadataService bool
retryWaitMin time.Duration
retryWaitMax time.Duration
retryMaxCount int
useProxy bool
}
func defaultHttpClientParams() httpClientParams {
return httpClientParams{
instanceMetadataService: false,
retryWaitMin: 1 * time.Second,
retryWaitMax: 30 * time.Second,
retryMaxCount: 8,
useProxy: true,
}
}
// httpClient returns a shimmed retryablehttp Client, with custom backoff and
// retry settings which can be customized per instance as needed.
func httpClient(params httpClientParams) *http.Client {
r := retryablehttp.NewClient()
r.Logger = log.Default()
r.Backoff = func(min, max time.Duration, attemptNum int, resp *http.Response) time.Duration {
// note: min and max contain the values of r.RetryWaitMin and r.RetryWaitMax
if resp != nil {
if params.instanceMetadataService {
// IMDS uses inappropriate 410 status to indicate a rebooting-like state, retry after 70 seconds
// See https://learn.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/how-to-use-vm-token#retry-guidance
if resp.StatusCode == http.StatusGone {
return 70 * time.Second
}
}
// Always look for Retry-After header, regardless of HTTP status
if s, ok := resp.Header["Retry-After"]; ok {
if sleep, err := strconv.ParseInt(s[0], 10, 64); err == nil {
return time.Second * time.Duration(sleep)
}
}
}
// Exponential backoff when Retry-After header not provided, e.g. IMDS
mult := math.Pow(2, float64(attemptNum)) * float64(min)
sleep := time.Duration(mult)
if float64(sleep) != mult || sleep > max {
sleep = max
}
return sleep
}
var proxyFunc func(*http.Request) (*url.URL, error)
if params.useProxy {
proxyFunc = http.ProxyFromEnvironment
}
r.RetryWaitMin = params.retryWaitMin
r.RetryWaitMax = params.retryWaitMax
r.HTTPClient = &http.Client{
Transport: &http.Transport{
Proxy: proxyFunc,
DialContext: func(ctx context.Context, network, addr string) (net.Conn, error) {
d := &net.Dialer{Resolver: &net.Resolver{}}
return d.DialContext(ctx, network, addr)
},
MaxIdleConns: 100,
IdleConnTimeout: 90 * time.Second,
TLSHandshakeTimeout: 10 * time.Second,
ExpectContinueTimeout: 1 * time.Second,
ForceAttemptHTTP2: true,
MaxIdleConnsPerHost: runtime.GOMAXPROCS(0) + 1,
},
}
return r.StandardClient()
}