/
githubmirror
/
tpcc-postgres
Обзор
Документация
Войти
/
githubmirror
/
tpcc-postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
config/mysql/sample_wikipedia_config.xml
44 строки
1 KB
Brian Kroth
fixups for modern mysql driver and ssl mode (#265)
24 мар 2023, 00:40
Не верифицирован
24 мар 2023, 00:40
5e1b094
Код
Авторство
О чём код?
<?xml version="1.0"?> <parameters> <!-- Connection details --> <type>MYSQL</type> <driver>com.mysql.cj.jdbc.Driver</driver> <url>jdbc:mysql://localhost:3306/benchbase?rewriteBatchedStatements=true&allowPublicKeyRetrieval=True&sslMode=DISABLED</url> <username>admin</username> <password>password</password> <isolation>TRANSACTION_SERIALIZABLE</isolation> <batchsize>128</batchsize> <!-- Scale factor is the number of wikipages *1000 --> <scalefactor>1</scalefactor> <!-- The workload --> <terminals>1</terminals> <works> <work> <time>60</time> <rate>1000</rate> <weights>1,1,7,90,1</weights> </work> </works> <!-- Wikipedia Procedures Declaration --> <transactiontypes> <transactiontype> <name>AddWatchList</name> </transactiontype> <transactiontype> <name>RemoveWatchList</name> </transactiontype> <transactiontype> <name>UpdatePage</name> </transactiontype> <transactiontype> <name>GetPageAnonymous</name> </transactiontype> <transactiontype> <name>GetPageAuthenticated</name> </transactiontype> </transactiontypes> </parameters>