-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathbatch-status.go
290 lines (256 loc) · 7.25 KB
/
batch-status.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package cmd
import (
"context"
"errors"
"fmt"
"strings"
"time"
"github.com/charmbracelet/bubbles/spinner"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/dustin/go-humanize"
"github.com/minio/cli"
json "github.com/minio/colorjson"
"github.com/minio/madmin-go/v3"
"github.com/minio/mc/pkg/probe"
"github.com/minio/pkg/v3/console"
"github.com/olekukonko/tablewriter"
)
var batchStatusCmd = cli.Command{
Name: "status",
Usage: "summarize job events on MinIO server in real-time",
Action: mainBatchStatus,
OnUsageError: onUsageError,
Before: setGlobalsFromContext,
Flags: globalFlags,
HideHelpCommand: true,
CustomHelpTemplate: `NAME:
{{.HelpName}} - {{.Usage}}
USAGE:
{{.HelpName}} TARGET JOBID
FLAGS:
{{range .VisibleFlags}}{{.}}
{{end}}
EXAMPLES:
1. Display current in-progress JOB events.
{{.Prompt}} {{.HelpName}} myminio/ KwSysDpxcBU9FNhGkn2dCf
`,
}
// batchJobStatusMessage container for batch job status messages
type batchJobStatusMessage struct {
Status string `json:"status"`
Metric madmin.JobMetric `json:"metric"`
}
// JSON jsonified batchJobStatusMessage message
func (c batchJobStatusMessage) JSON() string {
batchJobStatusMessageBytes, e := json.MarshalIndent(c, "", " ")
fatalIf(probe.NewError(e), "Unable to marshal into JSON.")
return string(batchJobStatusMessageBytes)
}
func (c batchJobStatusMessage) String() string {
return c.JSON()
}
// checkBatchStatusSyntax - validate all the passed arguments
func checkBatchStatusSyntax(ctx *cli.Context) {
if len(ctx.Args()) != 2 {
showCommandHelpAndExit(ctx, 1) // last argument is exit code
}
}
func mainBatchStatus(ctx *cli.Context) error {
checkBatchStatusSyntax(ctx)
aliasedURL := ctx.Args().Get(0)
jobID := ctx.Args().Get(1)
// Create a new MinIO Admin Client
client, err := newAdminClient(aliasedURL)
fatalIf(err.Trace(aliasedURL), "Unable to initialize admin client.")
ctxt, cancel := context.WithCancel(globalContext)
defer cancel()
_, e := client.DescribeBatchJob(ctxt, jobID)
nosuchJob := madmin.ToErrorResponse(e).Code == "XMinioAdminNoSuchJob"
if nosuchJob {
e = nil
if !globalJSON {
console.Infoln("Unable to find an active job, attempting to list from previously run jobs")
}
}
fatalIf(probe.NewError(e), "Unable to lookup job status")
ui := tea.NewProgram(initBatchJobMetricsUI(jobID))
if nosuchJob {
go func() {
res, e := client.BatchJobStatus(ctxt, jobID)
fatalIf(probe.NewError(e), "Unable to lookup job status")
if globalJSON {
printMsg(batchJobStatusMessage{
Status: "success",
Metric: res.LastMetric,
})
if res.LastMetric.Complete || res.LastMetric.Failed {
cancel()
return
}
} else {
ui.Send(res.LastMetric)
}
}()
} else {
go func() {
opts := madmin.MetricsOptions{
Type: madmin.MetricsBatchJobs,
ByJobID: jobID,
Interval: time.Second,
}
e := client.Metrics(ctxt, opts, func(metrics madmin.RealtimeMetrics) {
if globalJSON {
if metrics.Aggregated.BatchJobs == nil {
cancel()
return
}
job, ok := metrics.Aggregated.BatchJobs.Jobs[jobID]
if !ok {
cancel()
return
}
m := batchJobStatusMessage{
Status: "in-progress",
Metric: job,
}
switch {
case job.Complete:
m.Status = "complete"
case job.Failed:
m.Status = "failed"
default:
// leave as is with in-progress
}
printMsg(m)
if job.Complete || job.Failed {
cancel()
return
}
} else {
ui.Send(metrics.Aggregated.BatchJobs.Jobs[jobID])
}
})
if e != nil && !errors.Is(e, context.Canceled) {
fatalIf(probe.NewError(e).Trace(ctx.Args()...), "Unable to get current batch status")
}
}()
}
if !globalJSON {
if _, e := ui.Run(); e != nil {
cancel()
fatalIf(probe.NewError(e).Trace(aliasedURL), "Unable to get current batch status")
}
} else {
<-ctxt.Done()
}
return nil
}
func initBatchJobMetricsUI(jobID string) *batchJobMetricsUI {
s := spinner.New()
s.Spinner = spinner.Points
s.Style = lipgloss.NewStyle().Foreground(lipgloss.Color("205"))
return &batchJobMetricsUI{
spinner: s,
jobID: jobID,
}
}
type batchJobMetricsUI struct {
metric madmin.JobMetric
spinner spinner.Model
quitting bool
jobID string
}
func (m *batchJobMetricsUI) Init() tea.Cmd {
return m.spinner.Tick
}
func (m *batchJobMetricsUI) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {
case tea.KeyMsg:
switch msg.String() {
case "ctrl+c":
m.quitting = true
return m, tea.Quit
default:
return m, nil
}
case madmin.JobMetric:
m.metric = msg
if msg.Complete || msg.Failed {
m.quitting = true
return m, tea.Quit
}
return m, nil
case spinner.TickMsg:
var cmd tea.Cmd
m.spinner, cmd = m.spinner.Update(msg)
return m, cmd
default:
return m, nil
}
}
func (m *batchJobMetricsUI) View() string {
var s strings.Builder
// Set table header
table := tablewriter.NewWriter(&s)
table.SetAutoWrapText(false)
table.SetAutoFormatHeaders(true)
table.SetHeaderAlignment(tablewriter.ALIGN_LEFT)
table.SetAlignment(tablewriter.ALIGN_LEFT)
table.SetCenterSeparator("")
table.SetColumnSeparator("")
table.SetRowSeparator("")
table.SetHeaderLine(false)
table.SetBorder(false)
table.SetTablePadding("\t") // pad with tabs
table.SetNoWhiteSpace(true)
var data [][]string
addLine := func(prefix string, value interface{}) {
data = append(data, []string{
prefix,
whiteStyle.Render(fmt.Sprint(value)),
})
}
if !m.quitting {
s.WriteString(m.spinner.View())
} else {
if m.metric.Complete {
s.WriteString(m.spinner.Style.Render((tickCell + tickCell + tickCell)))
} else if m.metric.Failed {
s.WriteString(m.spinner.Style.Render((crossTickCell + crossTickCell + crossTickCell)))
}
}
s.WriteString("\n")
switch m.metric.JobType {
case string(madmin.BatchJobReplicate):
accElapsedTime := m.metric.LastUpdate.Sub(m.metric.StartTime)
addLine("JobType: ", m.metric.JobType)
addLine("Objects: ", m.metric.Replicate.Objects)
addLine("Versions: ", m.metric.Replicate.Objects)
addLine("FailedObjects: ", m.metric.Replicate.ObjectsFailed)
if accElapsedTime > 0 {
bytesTransferredPerSec := float64(m.metric.Replicate.BytesTransferred) / accElapsedTime.Seconds()
objectsPerSec := float64(int64(time.Second)*m.metric.Replicate.Objects) / float64(accElapsedTime)
addLine("Throughput: ", fmt.Sprintf("%s/s", humanize.IBytes(uint64(bytesTransferredPerSec))))
addLine("IOPs: ", fmt.Sprintf("%.2f objs/s", objectsPerSec))
}
addLine("Transferred: ", humanize.IBytes(uint64(m.metric.Replicate.BytesTransferred)))
addLine("Elapsed: ", accElapsedTime.Round(time.Second).String())
addLine("CurrObjName: ", m.metric.Replicate.Object)
case string(madmin.BatchJobExpire):
addLine("JobType: ", m.metric.JobType)
addLine("Objects: ", m.metric.Expired.Objects)
addLine("FailedObjects: ", m.metric.Expired.ObjectsFailed)
addLine("CurrObjName: ", m.metric.Expired.Object)
if !m.metric.LastUpdate.IsZero() {
accElapsedTime := m.metric.LastUpdate.Sub(m.metric.StartTime)
addLine("Elapsed: ", accElapsedTime.String())
}
}
table.AppendBulk(data)
table.Render()
if m.quitting {
s.WriteString("\n")
}
return s.String()
}