75 lines
2.6 KiB
Go
75 lines
2.6 KiB
Go
// 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 (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pingcap/tipb/go-tipb"
|
|
)
|
|
|
|
func TestString(t *testing.T) {
|
|
detail := &ExecDetails{
|
|
ProcessTime: 2*time.Second + 5*time.Millisecond,
|
|
WaitTime: time.Second,
|
|
BackoffTime: time.Second,
|
|
RequestCount: 1,
|
|
TotalKeys: 100,
|
|
ProcessedKeys: 10,
|
|
CommitDetail: &CommitDetails{
|
|
GetCommitTsTime: time.Second,
|
|
PrewriteTime: time.Second,
|
|
CommitTime: time.Second,
|
|
LocalLatchTime: time.Second,
|
|
TotalBackoffTime: time.Second,
|
|
ResolveLockTime: 1000000000, // 10^9 ns = 1s
|
|
WriteKeys: 1,
|
|
WriteSize: 1,
|
|
PrewriteRegionNum: 1,
|
|
TxnRetry: 1,
|
|
},
|
|
}
|
|
expected := "Process_time: 2.005 Wait_time: 1 Backoff_time: 1 Request_count: 1 Total_keys: 100 Process_keys: 10 Prewrite_time: 1 Commit_time: 1 " +
|
|
"Get_commit_ts_time: 1 Total_backoff_time: 1 Resolve_lock_time: 1 Local_latch_wait_time: 1 Write_keys: 1 Write_size: 1 Prewrite_region: 1 Txn_retry: 1"
|
|
if str := detail.String(); str != expected {
|
|
t.Errorf("got:\n%s\nexpected:\n%s", str, expected)
|
|
}
|
|
detail = &ExecDetails{}
|
|
if str := detail.String(); str != "" {
|
|
t.Errorf("got:\n%s\nexpected:\n", str)
|
|
}
|
|
}
|
|
|
|
func mockExecutorExecutionSummary(TimeProcessedNs, NumProducedRows, NumIterations uint64) *tipb.ExecutorExecutionSummary {
|
|
return &tipb.ExecutorExecutionSummary{&TimeProcessedNs, &NumProducedRows, &NumIterations, nil}
|
|
}
|
|
|
|
func TestCopRuntimeStats(t *testing.T) {
|
|
stats := NewRuntimeStatsColl()
|
|
stats.RecordOneCopTask("table_scan", "8.8.8.8", mockExecutorExecutionSummary(1, 1, 1))
|
|
stats.RecordOneCopTask("table_scan", "8.8.8.9", mockExecutorExecutionSummary(2, 2, 2))
|
|
stats.RecordOneCopTask("agg", "8.8.8.8", mockExecutorExecutionSummary(3, 3, 3))
|
|
stats.RecordOneCopTask("agg", "8.8.8.9", mockExecutorExecutionSummary(4, 4, 4))
|
|
if stats.ExistsCopStats("table_scan") != true {
|
|
t.Fatal("exist")
|
|
}
|
|
if stats.GetCopStats("table_scan").String() != "proc max:2ns, min:1ns, p80:2ns, p95:2ns, rows:3, iters:3, tasks:2" {
|
|
t.Fatal("table_scan")
|
|
}
|
|
if stats.GetCopStats("agg").String() != "proc max:4ns, min:3ns, p80:4ns, p95:4ns, rows:7, iters:7, tasks:2" {
|
|
t.Fatal("agg")
|
|
}
|
|
}
|