mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-20 11:22:31 -05:00
Use docker-compose for orchestrating benchmarking
This commit is contained in:
57
benchmark-tools/sysbench_scripts/lua/bulk_insert.lua
Executable file
57
benchmark-tools/sysbench_scripts/lua/bulk_insert.lua
Executable file
@@ -0,0 +1,57 @@
|
||||
#!/usr/bin/env sysbench
|
||||
-- -------------------------------------------------------------------------- --
|
||||
-- Bulk insert benchmark: do multi-row INSERTs concurrently in --threads
|
||||
-- threads with each thread inserting into its own table. The number of INSERTs
|
||||
-- executed by each thread is controlled by either --time or --events.
|
||||
-- -------------------------------------------------------------------------- --
|
||||
sysbench.hooks.report_intermediate = sysbench.report_json
|
||||
sysbench.hooks.report_cumulative = sysbench.report_json
|
||||
cursize=0
|
||||
|
||||
function thread_init()
|
||||
drv = sysbench.sql.driver()
|
||||
con = drv:connect()
|
||||
end
|
||||
|
||||
function prepare()
|
||||
local i
|
||||
|
||||
local drv = sysbench.sql.driver()
|
||||
local con = drv:connect()
|
||||
|
||||
for i = 1, sysbench.opt.threads do
|
||||
print("Creating table 'sbtest" .. i .. "'...")
|
||||
con:query(string.format([[
|
||||
CREATE TABLE IF NOT EXISTS sbtest%d (
|
||||
id INTEGER NOT NULL,
|
||||
k INTEGER DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (id))]], i))
|
||||
end
|
||||
end
|
||||
|
||||
function event()
|
||||
if (cursize == 0) then
|
||||
con:bulk_insert_init("INSERT INTO sbtest" .. sysbench.tid+1 .. " VALUES")
|
||||
end
|
||||
|
||||
cursize = cursize + 1
|
||||
|
||||
con:bulk_insert_next("(" .. cursize .. "," .. cursize .. ")")
|
||||
end
|
||||
|
||||
function thread_done()
|
||||
con:bulk_insert_done()
|
||||
con:disconnect()
|
||||
end
|
||||
|
||||
function cleanup()
|
||||
local i
|
||||
|
||||
local drv = sysbench.sql.driver()
|
||||
local con = drv:connect()
|
||||
|
||||
for i = 1, sysbench.opt.threads do
|
||||
print("Dropping table 'sbtest" .. i .. "'...")
|
||||
con:query("DROP TABLE IF EXISTS sbtest" .. i )
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user