forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory_test.go
141 lines (123 loc) · 3.97 KB
/
memory_test.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
// Copyright 2019 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 executor_test
import (
"context"
"fmt"
"runtime"
. "github.com/pingcap/check"
"github.com/pingcap/tidb/domain"
"github.com/pingcap/tidb/executor"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/session"
"github.com/pingcap/tidb/store/mockstore"
"github.com/pingcap/tidb/util/testkit"
)
var _ = SerialSuites(&testMemoryLeak{})
type testMemoryLeak struct {
store kv.Storage
domain *domain.Domain
}
func (s *testMemoryLeak) SetUpSuite(c *C) {
var err error
s.store, err = mockstore.NewMockStore()
c.Assert(err, IsNil)
s.domain, err = session.BootstrapSession(s.store)
c.Assert(err, IsNil)
}
func (s *testMemoryLeak) TearDownSuite(c *C) {
s.domain.Close()
c.Assert(s.store.Close(), IsNil)
}
func (s *testMemoryLeak) TestPBMemoryLeak(c *C) {
c.Skip("too slow")
se, err := session.CreateSession4Test(s.store)
c.Assert(err, IsNil)
_, err = se.Execute(context.Background(), "create database test_mem")
c.Assert(err, IsNil)
_, err = se.Execute(context.Background(), "use test_mem")
c.Assert(err, IsNil)
// prepare data
totalSize := uint64(256 << 20) // 256MB
blockSize := uint64(8 << 10) // 8KB
delta := totalSize / 5
numRows := totalSize / blockSize
_, err = se.Execute(context.Background(), fmt.Sprintf("create table t (c varchar(%v))", blockSize))
c.Assert(err, IsNil)
defer func() {
_, err = se.Execute(context.Background(), "drop table t")
c.Assert(err, IsNil)
}()
sql := fmt.Sprintf("insert into t values (space(%v))", blockSize)
for i := uint64(0); i < numRows; i++ {
_, err = se.Execute(context.Background(), sql)
c.Assert(err, IsNil)
}
// read data
runtime.GC()
allocatedBegin, inUseBegin := s.readMem()
records, err := se.Execute(context.Background(), "select * from t")
c.Assert(err, IsNil)
record := records[0]
rowCnt := 0
chk := record.NewChunk()
for {
c.Assert(record.Next(context.Background(), chk), IsNil)
rowCnt += chk.NumRows()
if chk.NumRows() == 0 {
break
}
}
c.Assert(rowCnt, Equals, int(numRows))
// check memory before close
runtime.GC()
allocatedAfter, inUseAfter := s.readMem()
c.Assert(allocatedAfter-allocatedBegin, GreaterEqual, totalSize)
c.Assert(s.memDiff(inUseAfter, inUseBegin), Less, delta)
se.Close()
runtime.GC()
allocatedFinal, inUseFinal := s.readMem()
c.Assert(allocatedFinal-allocatedAfter, Less, delta)
c.Assert(s.memDiff(inUseFinal, inUseAfter), Less, delta)
}
func (s *testMemoryLeak) readMem() (allocated, heapInUse uint64) {
var stat runtime.MemStats
runtime.ReadMemStats(&stat)
return stat.TotalAlloc, stat.HeapInuse
}
func (s *testMemoryLeak) memDiff(m1, m2 uint64) uint64 {
if m1 > m2 {
return m1 - m2
}
return m2 - m1
}
func (s *testMemoryLeak) TestGlobalMemoryTrackerOnCleanUp(c *C) {
// TODO: assert the memory consume has happened in another way
originConsume := executor.GlobalMemoryUsageTracker.BytesConsumed()
tk := testkit.NewTestKit(c, s.store)
tk.MustExec("use test")
tk.MustExec("drop table if exists t")
tk.MustExec("create table t (id int)")
// assert insert
tk.MustExec("insert t (id) values (1)")
tk.MustExec("insert t (id) values (2)")
tk.MustExec("insert t (id) values (3)")
afterConsume := executor.GlobalMemoryUsageTracker.BytesConsumed()
c.Assert(originConsume, Equals, afterConsume)
// assert update
tk.MustExec("update t set id = 4 where id = 1")
tk.MustExec("update t set id = 5 where id = 2")
tk.MustExec("update t set id = 6 where id = 3")
afterConsume = executor.GlobalMemoryUsageTracker.BytesConsumed()
c.Assert(originConsume, Equals, afterConsume)
}