-
Notifications
You must be signed in to change notification settings - Fork 198
Support for Sybasease+informix (tpcc and ycsb) #383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
anasY2
wants to merge
4
commits into
cmu-db:main
Choose a base branch
from
anasY2:sybasease+informix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev
Previous commit
SybaseASE and Informix
- Loading branch information
commit a33c48e1cec08e17f9d660a4d3be242e83b87f7a
There are no files selected for viewing
This file contains hidden or 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>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</n 8000 ame> | ||
<!--<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 hidden or 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> | ||
ED48 <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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need some testing support. Please have a look at
.github/workloads/maven.yml
and/or #379 for some examples on how to add that. Thanks!