I was getting some benchmarks going and I noticed there are several scripts in my sql-bench directory that begin “innotest”:
innotest1
innotest1a
innotest1b
innotest2
innotest2a
innotest2b
The documentation said run them concurrently, so I did:
perl innotest1 > output/innotest1.txt &
perl innotest1a > output/innotest1a.txt &
perl innotest1b > output/innotest1b.txt &
Other than generate a huge load, what did these scripts do? How can I use them? What are they for?
I couldn’t find any documentation on them anywhere.