execdetails.go 13.5 KB
Newer Older
L
liipx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright 2018 PingCAP, 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,
// See the License for the specific language governing permissions and
// limitations under the License.

package execdetails

import (
	"fmt"
martianzhang's avatar
martianzhang 已提交
18
	"sort"
martianzhang's avatar
martianzhang 已提交
19
	"strconv"
L
liipx 已提交
20 21 22 23
	"strings"
	"sync"
	"sync/atomic"
	"time"
martianzhang's avatar
martianzhang 已提交
24 25

	"github.com/pingcap/tipb/go-tipb"
martianzhang's avatar
martianzhang 已提交
26
	"go.uber.org/zap"
L
liipx 已提交
27 28
)

martianzhang's avatar
martianzhang 已提交
29 30
type commitDetailCtxKeyType struct{}

martianzhang's avatar
martianzhang 已提交
31
// CommitDetailCtxKey presents CommitDetail info key in context.
martianzhang's avatar
martianzhang 已提交
32
var CommitDetailCtxKey = commitDetailCtxKeyType{}
martianzhang's avatar
martianzhang 已提交
33

L
liipx 已提交
34 35
// ExecDetails contains execution detail information.
type ExecDetails struct {
martianzhang's avatar
martianzhang 已提交
36
	CalleeAddress string
L
liipx 已提交
37 38 39 40 41 42
	ProcessTime   time.Duration
	WaitTime      time.Duration
	BackoffTime   time.Duration
	RequestCount  int
	TotalKeys     int64
	ProcessedKeys int64
martianzhang's avatar
martianzhang 已提交
43 44 45 46 47 48 49 50 51
	CommitDetail  *CommitDetails
}

// CommitDetails contains commit detail information.
type CommitDetails struct {
	GetCommitTsTime   time.Duration
	PrewriteTime      time.Duration
	CommitTime        time.Duration
	LocalLatchTime    time.Duration
martianzhang's avatar
martianzhang 已提交
52 53 54 55 56
	CommitBackoffTime int64
	Mu                struct {
		sync.Mutex
		BackoffTypes []fmt.Stringer
	}
martianzhang's avatar
martianzhang 已提交
57 58 59 60 61
	ResolveLockTime   int64
	WriteKeys         int
	WriteSize         int
	PrewriteRegionNum int32
	TxnRetry          int
L
liipx 已提交
62 63
}

martianzhang's avatar
martianzhang 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
const (
	// ProcessTimeStr represents the sum of process time of all the coprocessor tasks.
	ProcessTimeStr = "Process_time"
	// WaitTimeStr means the time of all coprocessor wait.
	WaitTimeStr = "Wait_time"
	// BackoffTimeStr means the time of all back-off.
	BackoffTimeStr = "Backoff_time"
	// RequestCountStr means the request count.
	RequestCountStr = "Request_count"
	// TotalKeysStr means the total scan keys.
	TotalKeysStr = "Total_keys"
	// ProcessKeysStr means the total processed keys.
	ProcessKeysStr = "Process_keys"
)

L
liipx 已提交
79 80 81 82
// String implements the fmt.Stringer interface.
func (d ExecDetails) String() string {
	parts := make([]string, 0, 6)
	if d.ProcessTime > 0 {
martianzhang's avatar
martianzhang 已提交
83
		parts = append(parts, ProcessTimeStr+": "+strconv.FormatFloat(d.ProcessTime.Seconds(), 'f', -1, 64))
L
liipx 已提交
84 85
	}
	if d.WaitTime > 0 {
martianzhang's avatar
martianzhang 已提交
86
		parts = append(parts, WaitTimeStr+": "+strconv.FormatFloat(d.WaitTime.Seconds(), 'f', -1, 64))
L
liipx 已提交
87 88
	}
	if d.BackoffTime > 0 {
martianzhang's avatar
martianzhang 已提交
89
		parts = append(parts, BackoffTimeStr+": "+strconv.FormatFloat(d.BackoffTime.Seconds(), 'f', -1, 64))
L
liipx 已提交
90 91
	}
	if d.RequestCount > 0 {
martianzhang's avatar
martianzhang 已提交
92
		parts = append(parts, RequestCountStr+": "+strconv.FormatInt(int64(d.RequestCount), 10))
L
liipx 已提交
93 94
	}
	if d.TotalKeys > 0 {
martianzhang's avatar
martianzhang 已提交
95
		parts = append(parts, TotalKeysStr+": "+strconv.FormatInt(d.TotalKeys, 10))
L
liipx 已提交
96 97
	}
	if d.ProcessedKeys > 0 {
martianzhang's avatar
martianzhang 已提交
98
		parts = append(parts, ProcessKeysStr+": "+strconv.FormatInt(d.ProcessedKeys, 10))
L
liipx 已提交
99
	}
martianzhang's avatar
martianzhang 已提交
100 101 102
	commitDetails := d.CommitDetail
	if commitDetails != nil {
		if commitDetails.PrewriteTime > 0 {
martianzhang's avatar
martianzhang 已提交
103
			parts = append(parts, fmt.Sprintf("Prewrite_time: %v", commitDetails.PrewriteTime.Seconds()))
martianzhang's avatar
martianzhang 已提交
104 105
		}
		if commitDetails.CommitTime > 0 {
martianzhang's avatar
martianzhang 已提交
106
			parts = append(parts, fmt.Sprintf("Commit_time: %v", commitDetails.CommitTime.Seconds()))
martianzhang's avatar
martianzhang 已提交
107 108
		}
		if commitDetails.GetCommitTsTime > 0 {
martianzhang's avatar
martianzhang 已提交
109
			parts = append(parts, fmt.Sprintf("Get_commit_ts_time: %v", commitDetails.GetCommitTsTime.Seconds()))
martianzhang's avatar
martianzhang 已提交
110
		}
martianzhang's avatar
martianzhang 已提交
111 112 113 114 115 116 117
		commitBackoffTime := atomic.LoadInt64(&commitDetails.CommitBackoffTime)
		if commitBackoffTime > 0 {
			parts = append(parts, fmt.Sprintf("Commit_backoff_time: %v", time.Duration(commitBackoffTime).Seconds()))
		}
		commitDetails.Mu.Lock()
		if len(commitDetails.Mu.BackoffTypes) > 0 {
			parts = append(parts, fmt.Sprintf("Backoff_types: %v", commitDetails.Mu.BackoffTypes))
martianzhang's avatar
martianzhang 已提交
118
		}
martianzhang's avatar
martianzhang 已提交
119
		commitDetails.Mu.Unlock()
martianzhang's avatar
martianzhang 已提交
120 121
		resolveLockTime := atomic.LoadInt64(&commitDetails.ResolveLockTime)
		if resolveLockTime > 0 {
martianzhang's avatar
martianzhang 已提交
122
			parts = append(parts, fmt.Sprintf("Resolve_lock_time: %v", time.Duration(resolveLockTime).Seconds()))
martianzhang's avatar
martianzhang 已提交
123 124
		}
		if commitDetails.LocalLatchTime > 0 {
martianzhang's avatar
martianzhang 已提交
125
			parts = append(parts, fmt.Sprintf("Local_latch_wait_time: %v", commitDetails.LocalLatchTime.Seconds()))
martianzhang's avatar
martianzhang 已提交
126 127
		}
		if commitDetails.WriteKeys > 0 {
martianzhang's avatar
martianzhang 已提交
128
			parts = append(parts, fmt.Sprintf("Write_keys: %d", commitDetails.WriteKeys))
martianzhang's avatar
martianzhang 已提交
129 130
		}
		if commitDetails.WriteSize > 0 {
martianzhang's avatar
martianzhang 已提交
131
			parts = append(parts, fmt.Sprintf("Write_size: %d", commitDetails.WriteSize))
martianzhang's avatar
martianzhang 已提交
132 133 134
		}
		prewriteRegionNum := atomic.LoadInt32(&commitDetails.PrewriteRegionNum)
		if prewriteRegionNum > 0 {
martianzhang's avatar
martianzhang 已提交
135
			parts = append(parts, fmt.Sprintf("Prewrite_region: %d", prewriteRegionNum))
martianzhang's avatar
martianzhang 已提交
136 137
		}
		if commitDetails.TxnRetry > 0 {
martianzhang's avatar
martianzhang 已提交
138
			parts = append(parts, fmt.Sprintf("Txn_retry: %d", commitDetails.TxnRetry))
martianzhang's avatar
martianzhang 已提交
139 140
		}
	}
L
liipx 已提交
141 142 143
	return strings.Join(parts, " ")
}

martianzhang's avatar
martianzhang 已提交
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
// ToZapFields wraps the ExecDetails as zap.Fields.
func (d ExecDetails) ToZapFields() (fields []zap.Field) {
	fields = make([]zap.Field, 0, 16)
	if d.ProcessTime > 0 {
		fields = append(fields, zap.String(strings.ToLower(ProcessTimeStr), strconv.FormatFloat(d.ProcessTime.Seconds(), 'f', -1, 64)+"s"))
	}
	if d.WaitTime > 0 {
		fields = append(fields, zap.String(strings.ToLower(WaitTimeStr), strconv.FormatFloat(d.ProcessTime.Seconds(), 'f', -1, 64)+"s"))
	}
	if d.BackoffTime > 0 {
		fields = append(fields, zap.String(strings.ToLower(BackoffTimeStr), strconv.FormatFloat(d.BackoffTime.Seconds(), 'f', -1, 64)+"s"))
	}
	if d.RequestCount > 0 {
		fields = append(fields, zap.String(strings.ToLower(RequestCountStr), strconv.FormatInt(int64(d.RequestCount), 10)))
	}
	if d.TotalKeys > 0 {
		fields = append(fields, zap.String(strings.ToLower(TotalKeysStr), strconv.FormatInt(d.TotalKeys, 10)))
	}
	if d.ProcessedKeys > 0 {
		fields = append(fields, zap.String(strings.ToLower(ProcessKeysStr), strconv.FormatInt(d.ProcessedKeys, 10)))
	}
	commitDetails := d.CommitDetail
	if commitDetails != nil {
		if commitDetails.PrewriteTime > 0 {
			fields = append(fields, zap.String("prewrite_time", fmt.Sprintf("%v", strconv.FormatFloat(commitDetails.PrewriteTime.Seconds(), 'f', -1, 64)+"s")))
		}
		if commitDetails.CommitTime > 0 {
			fields = append(fields, zap.String("commit_time", fmt.Sprintf("%v", strconv.FormatFloat(commitDetails.CommitTime.Seconds(), 'f', -1, 64)+"s")))
		}
		if commitDetails.GetCommitTsTime > 0 {
			fields = append(fields, zap.String("get_commit_ts_time", fmt.Sprintf("%v", strconv.FormatFloat(commitDetails.GetCommitTsTime.Seconds(), 'f', -1, 64)+"s")))
		}
martianzhang's avatar
martianzhang 已提交
176 177 178 179 180 181 182
		commitBackoffTime := atomic.LoadInt64(&commitDetails.CommitBackoffTime)
		if commitBackoffTime > 0 {
			fields = append(fields, zap.String("commit_backoff_time", fmt.Sprintf("%v", strconv.FormatFloat(time.Duration(commitBackoffTime).Seconds(), 'f', -1, 64)+"s")))
		}
		commitDetails.Mu.Lock()
		if len(commitDetails.Mu.BackoffTypes) > 0 {
			fields = append(fields, zap.String("backoff_types", fmt.Sprintf("%v", commitDetails.Mu.BackoffTypes)))
martianzhang's avatar
martianzhang 已提交
183
		}
martianzhang's avatar
martianzhang 已提交
184
		commitDetails.Mu.Unlock()
martianzhang's avatar
martianzhang 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
		resolveLockTime := atomic.LoadInt64(&commitDetails.ResolveLockTime)
		if resolveLockTime > 0 {
			fields = append(fields, zap.String("resolve_lock_time", fmt.Sprintf("%v", strconv.FormatFloat(time.Duration(resolveLockTime).Seconds(), 'f', -1, 64)+"s")))
		}
		if commitDetails.LocalLatchTime > 0 {
			fields = append(fields, zap.String("local_latch_wait_time", fmt.Sprintf("%v", strconv.FormatFloat(commitDetails.LocalLatchTime.Seconds(), 'f', -1, 64)+"s")))
		}
		if commitDetails.WriteKeys > 0 {
			fields = append(fields, zap.Int("write_keys", commitDetails.WriteKeys))
		}
		if commitDetails.WriteSize > 0 {
			fields = append(fields, zap.Int("write_size", commitDetails.WriteSize))
		}
		prewriteRegionNum := atomic.LoadInt32(&commitDetails.PrewriteRegionNum)
		if prewriteRegionNum > 0 {
			fields = append(fields, zap.Int32("prewrite_region", prewriteRegionNum))
		}
		if commitDetails.TxnRetry > 0 {
			fields = append(fields, zap.Int("txn_retry", commitDetails.TxnRetry))
		}
	}
	return fields
}

martianzhang's avatar
martianzhang 已提交
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
// CopRuntimeStats collects cop tasks' execution info.
type CopRuntimeStats struct {
	sync.Mutex

	// stats stores the runtime statistics of coprocessor tasks.
	// The key of the map is the tikv-server address. Because a tikv-server can
	// have many region leaders, several coprocessor tasks can be sent to the
	// same tikv-server instance. We have to use a list to maintain all tasks
	// executed on each instance.
	stats map[string][]*RuntimeStats
}

// RecordOneCopTask records a specific cop tasks's execution detail.
func (crs *CopRuntimeStats) RecordOneCopTask(address string, summary *tipb.ExecutorExecutionSummary) {
	crs.Lock()
	defer crs.Unlock()
	crs.stats[address] = append(crs.stats[address],
		&RuntimeStats{int32(*summary.NumIterations), int64(*summary.TimeProcessedNs), int64(*summary.NumProducedRows)})
}

func (crs *CopRuntimeStats) String() string {
	if len(crs.stats) == 0 {
		return ""
	}

	var totalRows, totalTasks int64
	var totalIters int32
	procTimes := make([]time.Duration, 0, 32)
	for _, instanceStats := range crs.stats {
		for _, stat := range instanceStats {
			procTimes = append(procTimes, time.Duration(stat.consume)*time.Nanosecond)
			totalRows += stat.rows
			totalIters += stat.loop
			totalTasks++
		}
	}

	if totalTasks == 1 {
		return fmt.Sprintf("time:%v, loops:%d, rows:%d", procTimes[0], totalIters, totalRows)
	}

	n := len(procTimes)
	sort.Slice(procTimes, func(i, j int) bool { return procTimes[i] < procTimes[j] })
	return fmt.Sprintf("proc max:%v, min:%v, p80:%v, p95:%v, rows:%v, iters:%v, tasks:%v",
		procTimes[n-1], procTimes[0], procTimes[n*4/5], procTimes[n*19/20], totalRows, totalIters, totalTasks)
}

martianzhang's avatar
martianzhang 已提交
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
// ReaderRuntimeStats collects stats for TableReader, IndexReader and IndexLookupReader
type ReaderRuntimeStats struct {
	sync.Mutex

	copRespTime []time.Duration
}

// recordOneCopTask record once cop response time to update maxcopRespTime
func (rrs *ReaderRuntimeStats) recordOneCopTask(t time.Duration) {
	rrs.Lock()
	defer rrs.Unlock()
	rrs.copRespTime = append(rrs.copRespTime, t)
}

func (rrs *ReaderRuntimeStats) String() string {
	size := len(rrs.copRespTime)
	if size == 0 {
		return ""
	}
	if size == 1 {
		return fmt.Sprintf("rpc time:%v", rrs.copRespTime[0])
	}
	sort.Slice(rrs.copRespTime, func(i, j int) bool {
		return rrs.copRespTime[i] < rrs.copRespTime[j]
	})
	vMax, vMin := rrs.copRespTime[size-1], rrs.copRespTime[0]
	vP80, vP95 := rrs.copRespTime[size*4/5], rrs.copRespTime[size*19/20]
	sum := 0.0
	for _, t := range rrs.copRespTime {
		sum += float64(t)
	}
	vAvg := time.Duration(sum / float64(size))
	return fmt.Sprintf("rpc max:%v, min:%v, avg:%v, p80:%v, p95:%v", vMax, vMin, vAvg, vP80, vP95)
}

L
liipx 已提交
291 292
// RuntimeStatsColl collects executors's execution info.
type RuntimeStatsColl struct {
martianzhang's avatar
martianzhang 已提交
293 294 295 296
	mu          sync.Mutex
	rootStats   map[string]*RuntimeStats
	copStats    map[string]*CopRuntimeStats
	readerStats map[string]*ReaderRuntimeStats
L
liipx 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310
}

// RuntimeStats collects one executor's execution info.
type RuntimeStats struct {
	// executor's Next() called times.
	loop int32
	// executor consume time.
	consume int64
	// executor return row count.
	rows int64
}

// NewRuntimeStatsColl creates new executor collector.
func NewRuntimeStatsColl() *RuntimeStatsColl {
martianzhang's avatar
martianzhang 已提交
311
	return &RuntimeStatsColl{rootStats: make(map[string]*RuntimeStats),
martianzhang's avatar
martianzhang 已提交
312
		copStats: make(map[string]*CopRuntimeStats), readerStats: make(map[string]*ReaderRuntimeStats)}
L
liipx 已提交
313 314
}

martianzhang's avatar
martianzhang 已提交
315 316
// GetRootStats gets execStat for a executor.
func (e *RuntimeStatsColl) GetRootStats(planID string) *RuntimeStats {
L
liipx 已提交
317 318
	e.mu.Lock()
	defer e.mu.Unlock()
martianzhang's avatar
martianzhang 已提交
319
	runtimeStats, exists := e.rootStats[planID]
L
liipx 已提交
320 321
	if !exists {
		runtimeStats = &RuntimeStats{}
martianzhang's avatar
martianzhang 已提交
322
		e.rootStats[planID] = runtimeStats
L
liipx 已提交
323 324 325 326
	}
	return runtimeStats
}

martianzhang's avatar
martianzhang 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
// GetCopStats gets the CopRuntimeStats specified by planID.
func (e *RuntimeStatsColl) GetCopStats(planID string) *CopRuntimeStats {
	e.mu.Lock()
	defer e.mu.Unlock()
	copStats, ok := e.copStats[planID]
	if !ok {
		copStats = &CopRuntimeStats{stats: make(map[string][]*RuntimeStats)}
		e.copStats[planID] = copStats
	}
	return copStats
}

// RecordOneCopTask records a specific cop tasks's execution detail.
func (e *RuntimeStatsColl) RecordOneCopTask(planID, address string, summary *tipb.ExecutorExecutionSummary) {
	copStats := e.GetCopStats(planID)
	copStats.RecordOneCopTask(address, summary)
}

martianzhang's avatar
martianzhang 已提交
345 346 347 348 349 350
// RecordOneReaderStats records a specific stats for TableReader, IndexReader and IndexLookupReader.
func (e *RuntimeStatsColl) RecordOneReaderStats(planID string, copRespTime time.Duration) {
	readerStats := e.GetReaderStats(planID)
	readerStats.recordOneCopTask(copRespTime)
}

martianzhang's avatar
martianzhang 已提交
351 352 353 354 355 356 357 358 359 360
// ExistsRootStats checks if the planID exists in the rootStats collection.
func (e *RuntimeStatsColl) ExistsRootStats(planID string) bool {
	e.mu.Lock()
	defer e.mu.Unlock()
	_, exists := e.rootStats[planID]
	return exists
}

// ExistsCopStats checks if the planID exists in the copStats collection.
func (e *RuntimeStatsColl) ExistsCopStats(planID string) bool {
L
liipx 已提交
361 362
	e.mu.Lock()
	defer e.mu.Unlock()
martianzhang's avatar
martianzhang 已提交
363
	_, exists := e.copStats[planID]
L
liipx 已提交
364 365 366
	return exists
}

martianzhang's avatar
martianzhang 已提交
367 368 369 370 371 372 373 374 375 376 377 378
// GetReaderStats gets the ReaderRuntimeStats specified by planID.
func (e *RuntimeStatsColl) GetReaderStats(planID string) *ReaderRuntimeStats {
	e.mu.Lock()
	defer e.mu.Unlock()
	stats, exists := e.readerStats[planID]
	if !exists {
		stats = &ReaderRuntimeStats{copRespTime: make([]time.Duration, 0, 20)}
		e.readerStats[planID] = stats
	}
	return stats
}

L
liipx 已提交
379 380 381 382 383 384 385
// Record records executor's execution.
func (e *RuntimeStats) Record(d time.Duration, rowNum int) {
	atomic.AddInt32(&e.loop, 1)
	atomic.AddInt64(&e.consume, int64(d))
	atomic.AddInt64(&e.rows, int64(rowNum))
}

L
liipx 已提交
386 387 388 389 390
// SetRowNum sets the row num.
func (e *RuntimeStats) SetRowNum(rowNum int64) {
	atomic.StoreInt64(&e.rows, rowNum)
}

L
liipx 已提交
391 392 393
func (e *RuntimeStats) String() string {
	return fmt.Sprintf("time:%v, loops:%d, rows:%d", time.Duration(e.consume), e.loop, e.rows)
}