/
githubmirror
/
tpcc-postgres
Обзор
Документация
Войти
/
githubmirror
/
tpcc-postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
config/postgres/sample_seats_config.xml
47 строк
1 KB
Wan Shen Lim
Update config database from oltpbench to benchbase.
09 авг 2021, 21:02
09 авг 2021, 21:02
94fcde7
Код
Авторство
О чём код?
<?xml version="1.0"?> <parameters> <!-- Connection details --> <type>POSTGRES</type> <driver>org.postgresql.Driver</driver> <url>jdbc:postgresql://localhost:5432/benchbase?sslmode=disable&ApplicationName=seats&reWriteBatchedInserts=true</url> <username>admin</username> <password>password</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>