forked from minio/madmin-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperf-drive.go
90 lines (81 loc) · 2.5 KB
/
perf-drive.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
//
// 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"
)
// DriveSpeedTestResult - result of the drive speed test
type DriveSpeedTestResult struct {
Version string `json:"version"`
Endpoint string `json:"endpoint"`
DrivePerf []DrivePerf `json:"drivePerf,omitempty"`
Error string `json:"string,omitempty"`
}
// DrivePerf - result of drive speed test on 1 drive mounted at path
type DrivePerf struct {
Path string `json:"path"`
ReadThroughput uint64 `json:"readThroughput"`
WriteThroughput uint64 `json:"writeThroughput"`
Error string `json:"error,omitempty"`
}
// DriveSpeedTestOpts provide configurable options for drive speedtest
type DriveSpeedTestOpts struct {
Serial bool // Run speed tests one drive at a time
BlockSize uint64 // BlockSize for read/write (default 4MiB)
FileSize uint64 // Total fileSize to write and read (default 1GiB)
}
// DriveSpeedtest - perform drive speedtest on the MinIO servers
func (adm *AdminClient) DriveSpeedtest(ctx context.Context, opts DriveSpeedTestOpts) (chan DriveSpeedTestResult, error) {
queryVals := make(url.Values)
if opts.Serial {
queryVals.Set("serial", "true")
}
queryVals.Set("blocksize", strconv.FormatUint(opts.BlockSize, 10))
queryVals.Set("filesize", strconv.FormatUint(opts.FileSize, 10))
resp, err := adm.executeMethod(ctx,
http.MethodPost, requestData{
relPath: adminAPIPrefix + "/speedtest/drive",
queryValues: queryVals,
})
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, httpRespToErrorResponse(resp)
}
ch := make(chan DriveSpeedTestResult)
go func() {
defer closeResponse(resp)
defer close(ch)
dec := json.NewDecoder(resp.Body)
for {
var result DriveSpeedTestResult
if err := dec.Decode(&result); err != nil {
return
}
select {
case ch <- result:
case <-ctx.Done():
return
}
}
}()
return ch, nil
}