1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-27 09:01:50 +03:00

Configurable data payload size for dbsim.

This commit is contained in:
Teemu Ollakka
2020-06-26 13:41:30 +03:00
parent 94f5696010
commit 593f737605
4 changed files with 24 additions and 7 deletions

View File

@ -67,6 +67,10 @@ db::params db::parse_args(int argc, char** argv)
"number of transactions run by a client")
("rows", po::value<size_t>(&params.n_rows),
"number of rows per table")
("max-data-size", po::value<size_t>(&params.max_data_size),
"maximum size of data payload (default 8)")
("random-data-size", po::value<bool>(&params.random_data_size),
"randomized payload data size (default 0)")
("alg-freq", po::value<size_t>(&params.alg_freq),
"ALG frequency")
("sync-wait", po::value<bool>(&params.sync_wait),