/
githubmirror
/
tpcc-postgres
Обзор
Документация
Войти
/
githubmirror
/
tpcc-postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
config/sqlserver/sample_resourcestresser_config.xml
48 строк
1 KB
Brian Kroth
Expand CI/CD benchmarks for SqlServer (#264)
30 мар 2023, 00:08
Не верифицирован
30 мар 2023, 00:08
47697dd
Код
Авторство
О чём код?
<?xml version="1.0"?> <parameters> <!-- Connection details --> <type>sqlserver</type> <driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver> <url>jdbc:sqlserver://localhost:1433;encrypt=false;database=benchbase;</url> <username>benchuser01</username> <password>P@ssw0rd</password> <isolation>TRANSACTION_SERIALIZABLE</isolation> <batchsize>128</batchsize> <!-- Scalefactor in ResourceStresser scales by *100 the number of employees --> <scalefactor>1</scalefactor> <!-- The workload --> <terminals>1</terminals> <works> <work> <time>60</time> <rate>10000</rate> <weights>16.66,16.66,16.66,16.66,16.66,16.7</weights> </work> </works> <!-- R/S Procedures declaration --> <transactiontypes> <transactiontype> <name>CPU1</name> </transactiontype> <transactiontype> <name>CPU2</name> </transactiontype> <transactiontype> <name>IO1</name> </transactiontype> <transactiontype> <name>IO2</name> </transactiontype> <transactiontype> <name>Contention1</name> </transactiontype> <transactiontype> <name>Contention2</name> </transactiontype> </transactiontypes> </parameters>