/
githubmirror
/
tpcc-postgres
Обзор
Документация
Войти
/
githubmirror
/
tpcc-postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
config/sqlserver/sample_seats_config.xml
47 строк
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 SEATS scales by *1000 the number of customers--> <scalefactor>1</scalefactor> <!-- The workload --> <terminals>1</terminals> <works> <work> <time>60</time> <rate>10000</rate> <weights>10, 10, 35, 20, 10, 15</weights> </work> </works> <!-- SEATS Procedures declaration --> <transactiontypes> <transactiontype> <name>DeleteReservation</name> </transactiontype> <transactiontype> <name>FindFlights</name> </transactiontype> <transactiontype> <name>FindOpenSeats</name> </transactiontype> <transactiontype> <name>NewReservation</name> </transactiontype> <transactiontype> <name>UpdateCustomer</name> </transactiontype> <transactiontype> <name>UpdateReservation</name> </transactiontype> </transactiontypes> </parameters>