-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperf-drive.go
80 lines (71 loc) · 2.04 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
//
// MinIO Inc [madmin-go]
// Copyright (c) 2014-2025 MinIO.
// All rights reserved. No warranty, explicit or implicit, provided.
//
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
}