-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path002_initial_stat_bench.lua
62 lines (51 loc) · 1.29 KB
/
002_initial_stat_bench.lua
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
local lb = require 'luabench'
local fiber = require 'fiber'
local fun = require 'fun'
local M = {}
local STATUS = { 'R', 'T', 'W', 'B', 'Z', 'D' }
lb.before_all(function()
box.cfg{ memtx_memory = 2^30 }
box.schema.space.create('q1', {
if_not_exists = true,
format = {
{ name = 'id', type = 'unsigned' },
{ name = 'status', type = 'string' },
},
})
box.space.q1:create_index('primary', { parts = {'id'}, if_not_exists = true })
box.space.q1:create_index('xq', { parts = {'status', 'id'}, if_not_exists = true })
if fiber.extend_slice then
fiber.extend_slice({ err = 3600, warn = 3600 })
end
box.begin()
local tab = {}
for no = 1, 4e6 do
tab[1], tab[2] = no, STATUS[math.random(#STATUS)]
box.space.q1:replace(tab)
end
box.commit()
end)
lb.after_all(function()
box.space.q1:drop()
box.snapshot()
end)
function M.bench_iterate_all(b)
local limit = b.N
local scanned = 0
local stats = {}
for _, t in box.space.q1:pairs({}, { iterator = "ALL" }) do
stats[t.status] = (stats[t.status] or 0ULL) + 1
scanned = scanned + 1
if limit == scanned then break end
end
b.N = scanned
end
function M.bench_count(b)
local total = 0
for _, s in pairs(STATUS) do
total = total + box.space.q1.index.xq:count(s)
if b.N < total then break end
end
b.N = total
end
return M