Review changes.

Prevent overlapping of range queries by partitioning the whole into num_threads segments
and then make each thread work with its own segment.
This commit is contained in:
Hakan Kuecuekyilmaz
2010-10-29 04:15:54 +02:00
parent 7fd5ff7d01
commit cea90cbc87
2 changed files with 22 additions and 7 deletions

View File

@ -1,3 +1,9 @@
-- This test is designed for testing MariaDB's key_cache_segments for MyISAM,
-- and should work with other storage engines as well.
--
-- For details about key_cache_segments please refer to:
-- http://kb.askmonty.org/v/segmented-key-cache
--
function prepare()
local query
local i
@ -118,8 +124,10 @@ end
function event(thread_id)
local rs
-- To prevent overlapping of our range queries we need to partition the whole table
-- into num_threads segments and then make each thread work with its own segment.
for i = 1,random_points do
params[i] = sb_rand(thread_id, oltp_table_size)
params[i] = sb_rand(oltp_table_size / num_threads * thread_id, oltp_table_size / num_threads * (thread_id + 1))
end
rs = db_execute(stmt)
@ -130,7 +138,7 @@ end
function set_vars()
oltp_table_size = oltp_table_size or 10000
random_points = random_points or 10
if (oltp_auto_inc == 'off') then
oltp_auto_inc = false
else

View File

@ -1,3 +1,9 @@
-- This test is designed for testing MariaDB's key_cache_segments for MyISAM,
-- and should work with other storage engines as well.
--
-- For details about key_cache_segments please refer to:
-- http://kb.askmonty.org/v/segmented-key-cache
--
function prepare()
local query
local i
@ -108,9 +114,8 @@ function thread_init(thread_id)
]])
params = {}
for j = 1,number_of_ranges do
for j = 1,number_of_ranges * 2 do
params[j] = 1
params[j + 1] = 1
end
db_bind_param(stmt, params)
@ -120,8 +125,10 @@ end
function event(thread_id)
local rs
for i = 1,random_points do
params[i] = sb_rand(thread_id, oltp_table_size)
-- To prevent overlapping of our range queries we need to partition the whole table
-- into num_threads segments and then make each thread work with its own segment.
for i = 1,number_of_ranges * 2,2 do
params[i] = sb_rand(oltp_table_size / num_threads * thread_id, oltp_table_size / num_threads * (thread_id + 1))
params[i + 1] = params[i] + delta
end
@ -134,7 +141,7 @@ function set_vars()
oltp_table_size = oltp_table_size or 10000
number_of_ranges = number_of_ranges or 10
delta = random_ranges_delta or 5
if (oltp_auto_inc == 'off') then
oltp_auto_inc = false
else