-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
processlist.go
344 lines (296 loc) · 8.2 KB
/
processlist.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
// Copyright 2021 Dolthub, 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 sqle
import (
"context"
"errors"
"fmt"
"sync"
"time"
"github.com/sirupsen/logrus"
"github.com/dolthub/go-mysql-server/sql"
)
// ProcessList is a structure that keeps track of all the processes and their
// status.
type ProcessList struct {
mu sync.RWMutex
procs map[uint32]*sql.Process
byQueryPid map[uint64]uint32
}
// NewProcessList creates a new process list.
func NewProcessList() *ProcessList {
return &ProcessList{
procs: make(map[uint32]*sql.Process),
byQueryPid: make(map[uint64]uint32),
}
}
// Processes returns the list of current running processes.
func (pl *ProcessList) Processes() []sql.Process {
pl.mu.RLock()
defer pl.mu.RUnlock()
var result = make([]sql.Process, 0, len(pl.procs))
// Make a deep copy of all maps to avoid race
for _, proc := range pl.procs {
p := *proc
var progMap = make(map[string]sql.TableProgress, len(p.Progress))
for progName, prog := range p.Progress {
newProg := sql.TableProgress{
Progress: prog.Progress,
PartitionsProgress: make(map[string]sql.PartitionProgress, len(prog.PartitionsProgress)),
}
for partName, partProg := range prog.PartitionsProgress {
newProg.PartitionsProgress[partName] = partProg
}
progMap[progName] = newProg
}
p.Progress = progMap
result = append(result, p)
}
return result
}
func (pl *ProcessList) AddConnection(id uint32, addr string) {
sql.StatusVariables.IncrementGlobal("Threads_connected", 1)
pl.mu.Lock()
defer pl.mu.Unlock()
pl.procs[id] = &sql.Process{
Connection: id,
Command: sql.ProcessCommandConnect,
Host: addr,
User: "unauthenticated user",
StartedAt: time.Now(),
}
}
func (pl *ProcessList) ConnectionReady(sess sql.Session) {
pl.mu.Lock()
defer pl.mu.Unlock()
pl.procs[sess.ID()] = &sql.Process{
Connection: sess.ID(),
Command: sql.ProcessCommandSleep,
Host: sess.Client().Address,
User: sess.Client().User,
StartedAt: time.Now(),
Database: sess.GetCurrentDatabase(),
}
}
func (pl *ProcessList) RemoveConnection(connID uint32) {
pl.mu.Lock()
defer pl.mu.Unlock()
p := pl.procs[connID]
if p != nil {
sql.StatusVariables.IncrementGlobal("Threads_connected", -1)
if p.Kill != nil {
p.Kill()
}
delete(pl.byQueryPid, p.QueryPid)
delete(pl.procs, connID)
}
}
func (pl *ProcessList) BeginQuery(
ctx *sql.Context,
query string,
) (*sql.Context, error) {
pl.mu.Lock()
defer pl.mu.Unlock()
sql.StatusVariables.IncrementGlobal("Threads_running", 1)
id := ctx.Session.ID()
pid := ctx.Pid()
p := pl.procs[id]
if p == nil {
return nil, errors.New("internal error: connection not registered with process list")
}
if _, ok := pl.byQueryPid[pid]; ok {
return nil, sql.ErrPidAlreadyUsed.New(pid)
}
newCtx, cancel := context.WithCancel(ctx)
ctx = ctx.WithContext(newCtx)
p.Command = sql.ProcessCommandQuery
p.Query = query
p.QueryPid = pid
p.StartedAt = time.Now()
p.Kill = cancel
p.Progress = make(map[string]sql.TableProgress)
pl.byQueryPid[ctx.Pid()] = ctx.Session.ID()
return ctx, nil
}
func (pl *ProcessList) EndQuery(ctx *sql.Context) {
pl.mu.Lock()
defer pl.mu.Unlock()
id := ctx.Session.ID()
pid := ctx.Pid()
delete(pl.byQueryPid, pid)
p := pl.procs[id]
if p != nil && p.QueryPid == pid {
processTime := time.Now().Sub(p.StartedAt)
longQueryTime := getLongQueryTime()
if longQueryTime > 0 && processTime.Seconds() > longQueryTime {
sql.IncrementStatusVariable(ctx, "Slow_queries", 1)
}
sql.StatusVariables.IncrementGlobal("Threads_running", -1)
p.Command = sql.ProcessCommandSleep
p.Query = ""
p.StartedAt = time.Now()
p.Kill()
p.Kill = nil
p.QueryPid = 0
p.Progress = nil
}
}
// UpdateTableProgress updates the progress of the table with the given name for the
// process with the given pid.
func (pl *ProcessList) UpdateTableProgress(pid uint64, name string, delta int64) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
progress, ok := p.Progress[name]
if !ok {
progress = sql.NewTableProgress(name, -1)
}
progress.Done += delta
p.Progress[name] = progress
}
// UpdatePartitionProgress updates the progress of the table partition with the
// given name for the process with the given pid.
func (pl *ProcessList) UpdatePartitionProgress(pid uint64, tableName, partitionName string, delta int64) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
tablePg, ok := p.Progress[tableName]
if !ok {
return
}
partitionPg, ok := tablePg.PartitionsProgress[partitionName]
if !ok {
partitionPg = sql.PartitionProgress{Progress: sql.Progress{Name: partitionName, Total: -1}}
}
partitionPg.Done += delta
tablePg.PartitionsProgress[partitionName] = partitionPg
}
// AddTableProgress adds a new item to track progress from to the process with
// the given pid. If the pid does not exist, it will do nothing.
func (pl *ProcessList) AddTableProgress(pid uint64, name string, total int64) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
if pg, ok := p.Progress[name]; ok {
pg.Total = total
p.Progress[name] = pg
} else {
p.Progress[name] = sql.NewTableProgress(name, total)
}
}
// AddPartitionProgress adds a new item to track progress from to the process with
// the given pid. If the pid or the table does not exist, it will do nothing.
func (pl *ProcessList) AddPartitionProgress(pid uint64, tableName, partitionName string, total int64) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
tablePg, ok := p.Progress[tableName]
if !ok {
return
}
if pg, ok := tablePg.PartitionsProgress[partitionName]; ok {
pg.Total = total
tablePg.PartitionsProgress[partitionName] = pg
} else {
tablePg.PartitionsProgress[partitionName] =
sql.PartitionProgress{Progress: sql.Progress{Name: partitionName, Total: total}}
}
}
// RemoveTableProgress removes an existing item tracking progress from the
// process with the given pid, if it exists.
func (pl *ProcessList) RemoveTableProgress(pid uint64, name string) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
delete(p.Progress, name)
}
// RemovePartitionProgress removes an existing item tracking progress from the
// process with the given pid, if it exists.
func (pl *ProcessList) RemovePartitionProgress(pid uint64, tableName, partitionName string) {
pl.mu.Lock()
defer pl.mu.Unlock()
id, ok := pl.byQueryPid[pid]
if !ok {
return
}
p, ok := pl.procs[id]
if !ok {
return
}
tablePg, ok := p.Progress[tableName]
if !ok {
return
}
delete(tablePg.PartitionsProgress, partitionName)
}
// Kill terminates all queries for a given connection id.
func (pl *ProcessList) Kill(connID uint32) {
pl.mu.Lock()
defer pl.mu.Unlock()
p := pl.procs[connID]
if p != nil && p.Kill != nil {
logrus.Infof("kill query: pid %d", p.QueryPid)
p.Kill()
}
}
// getLongQueryTime returns the value of the long_query_time system variable. If any errors are encountered loading
// the value, then an error is logged and 0 is returned.
func getLongQueryTime() float64 {
_, longQueryTimeValue, ok := sql.SystemVariables.GetGlobal("long_query_time")
if !ok {
logrus.Errorf("unable to find long_query_time system variable")
return 0
}
longQueryTime, ok := longQueryTimeValue.(float64)
if !ok {
logrus.Errorf(fmt.Sprintf("unexpected type for value of long_query_time system variable: %T", longQueryTimeValue))
return 0
}
return longQueryTime
}