forked from minio/madmin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
speedtest.go
98 lines (91 loc) · 2.74 KB
/
speedtest.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
//
// MinIO Object Storage (c) 2021 MinIO, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package madmin
import (
"context"
"encoding/json"
"net/http"
"net/url"
"strconv"
"time"
)
// SpeedTestStatServer - stats of a server
type SpeedTestStatServer struct {
Endpoint string `json:"endpoint"`
ThroughputPerSec uint64 `json:"throughputPerSec"`
ObjectsPerSec uint64 `json:"objectsPerSec"`
Err string `json:"err"`
}
// SpeedTestStats - stats of all the servers
type SpeedTestStats struct {
ThroughputPerSec uint64 `json:"throughputPerSec"`
ObjectsPerSec uint64 `json:"objectsPerSec"`
Servers []SpeedTestStatServer `json:"servers"`
}
// SpeedTestResult - result of the speedtest() call
type SpeedTestResult struct {
Version string `json:"version"`
Servers int `json:"servers"`
Disks int `json:"disks"`
PUTStats SpeedTestStats
GETStats SpeedTestStats
}
// SpeedtestOpts provide configurable options for speedtest
type SpeedtestOpts struct {
Size int // Object size used in speed test
Concurrency int // Concurrency used in speed test
Duration time.Duration // Total duration of the speed test
Autotune bool // Enable autotuning
}
// Speedtest - perform speedtest on the MinIO servers
func (adm *AdminClient) Speedtest(ctx context.Context, opts SpeedtestOpts) (chan SpeedTestResult, error) {
queryVals := make(url.Values)
queryVals.Set("size", strconv.Itoa(opts.Size))
queryVals.Set("duration", opts.Duration.String())
queryVals.Set("concurrent", strconv.Itoa(opts.Concurrency))
if opts.Autotune {
queryVals.Set("autotune", "true")
}
resp, err := adm.executeMethod(ctx,
http.MethodPost, requestData{
relPath: adminAPIPrefix + "/speedtest",
queryValues: queryVals,
})
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
ch := make(chan SpeedTestResult)
go func() {
defer closeResponse(resp)
defer close(ch)
var result SpeedTestResult
for {
dec := json.NewDecoder(resp.Body)
if err := dec.Decode(&result); err != nil {
return
}
select {
case ch <- result:
case <-ctx.Done():
return
}
}
}()
return ch, nil
}