-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfd3ed4
commit b33fb19
Showing
16 changed files
with
645 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?xml version="1.0"?> | ||
<parameters> | ||
|
||
<!-- Connection details --> | ||
<type>INFORMIX</type> | ||
<driver>com.informix.jdbc.IfxDriver</driver> | ||
<url>jdbc:informix-sqli://localhost:9088/demo:INFORMIXSERVER=informix;user=informix;password=in4mix;sslMode=DISABLED</url> | ||
<username>informix</username> | ||
<password>in4mix</password> | ||
<isolation>TRANSACTION_SERIALIZABLE</isolation> | ||
<batchsize>128</batchsize> | ||
|
||
<!-- Scale factor is the number of warehouses in TPCC --> | ||
<scalefactor>4</scalefactor> | ||
|
||
<!-- The workload --> | ||
<terminals>2</terminals> | ||
<works> | ||
<work> | ||
<time>60</time> | ||
<rate>10000</rate> | ||
<weights>45,43,4,4,4</weights> | ||
</work> | ||
</works> | ||
|
||
<!-- TPCC specific --> | ||
<transactiontypes> | ||
<transactiontype> | ||
<name>NewOrder</name> | ||
<!--<preExecutionWait>18000</preExecutionWait>--> | ||
<!--<postExecutionWait>12000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>Payment</name> | ||
<!--<preExecutionWait>3000</preExecutionWait>--> | ||
<!--<postExecutionWait>12000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>OrderStatus</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>10000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>Delivery</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>5000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>StockLevel</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>5000</postExecutionWait>--> | ||
</transactiontype> | ||
</transactiontypes> | ||
</parameters> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0"?> | ||
<parameters> | ||
|
||
<!-- Connection details --> | ||
<type>INFORMIX</type> | ||
<driver>com.informix.jdbc.IfxDriver</driver> | ||
<url>jdbc:informix-sqli://localhost:9088/demo:INFORMIXSERVER=informix;user=informix;password=in4mix;sslMode=DISABLED</url> | ||
<username>informix</username> | ||
<password>in4mix</password> | ||
<isolation>TRANSACTION_SERIALIZABLE</isolation> | ||
<batchsize>128</batchsize> | ||
|
||
<!-- Scalefactor in YCSB is *1000 the number of rows in the USERTABLE--> | ||
<scalefactor>1</scalefactor> | ||
|
||
<!-- The workload --> | ||
<terminals>1</terminals> | ||
<works> | ||
<work> | ||
<time>60</time> | ||
<rate>10000</rate> | ||
<weights>50,5,15,10,10,10</weights> | ||
</work> | ||
</works> | ||
|
||
<!-- YCSB Procedures declaration --> | ||
<transactiontypes> | ||
<transactiontype> | ||
<name>ReadRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>InsertRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>ScanRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>UpdateRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>DeleteRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>ReadModifyWriteRecord</name> | ||
</transactiontype> | ||
</transactiontypes> | ||
</parameters> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0"?> | ||
<parameters> | ||
|
||
<!-- Connection details --> | ||
<type>SybaseASE</type> | ||
<driver>com.sybase.jdbc4.jdbc.SybDriver</driver> | ||
<url>jdbc:sybase:Tds:localhost:8000/test</url> | ||
<username>sa</username> | ||
<password>myPassword</password> | ||
<isolation>TRANSACTION_SERIALIZABLE</isolation> | ||
<batchsize>128</batchsize> | ||
|
||
<!-- Scale factor is the number of warehouses in TPCC --> | ||
<scalefactor>1</scalefactor> | ||
|
||
<!-- The workload --> | ||
<terminals>1</terminals> | ||
<works> | ||
<work> | ||
<time>60</time> | ||
<rate>10000</rate> | ||
<weights>45,43,4,4,4</weights> | ||
</work> | ||
</works> | ||
|
||
<!-- TPCC specific --> | ||
<transactiontypes> | ||
<transactiontype> | ||
<name>NewOrder</name> | ||
<!--<preExecutionWait>18000</preExecutionWait>--> | ||
<!--<postExecutionWait>12000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>Payment</name> | ||
<!--<preExecutionWait>3000</preExecutionWait>--> | ||
<!--<postExecutionWait>12000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>OrderStatus</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>10000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>Delivery</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>5000</postExecutionWait>--> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>StockLevel</name> | ||
<!--<preExecutionWait>2000</preExecutionWait>--> | ||
<!--<postExecutionWait>5000</postExecutionWait>--> | ||
</transactiontype> | ||
</transactiontypes> | ||
</parameters> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?xml version="1.0"?> | ||
<parameters> | ||
|
||
<!-- Connection details --> | ||
<type>SybaseASE</type> | ||
<driver>com.sybase.jdbc4.jdbc.SybDriver</driver> | ||
<url>jdbc:sybase:Tds:localhost:8000/demo</url> | ||
<username>sa</username> | ||
<password>myPassword</password> | ||
<isolation>TRANSACTION_SERIALIZABLE</isolation> | ||
<batchsize>128</batchsize> | ||
|
||
<!-- Scalefactor in YCSB is *1000 the number of rows in the USERTABLE--> | ||
<scalefactor>1</scalefactor> | ||
|
||
<!-- The workload --> | ||
<terminals>1</terminals> | ||
<works> | ||
<work> | ||
<time>60</time> | ||
<rate>10000</rate> | ||
<weights>50,5,15,10,10,10</weights> | ||
</work> | ||
</works> | ||
|
||
<!-- YCSB Procedures declaration --> | ||
<transactiontypes> | ||
<transactiontype> | ||
<name>ReadRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>InsertRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>ScanRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>UpdateRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>DeleteRecord</name> | ||
</transactiontype> | ||
<transactiontype> | ||
<name>ReadModifyWriteRecord</name> | ||
</transactiontype> | ||
</transactiontypes> | ||
</parameters> | ||
|
Oops, something went wrong.