-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- changes to datasource object url
- Loading branch information
Sonal Agarwal
committed
Jul 2, 2024
1 parent
578a9f0
commit c7ad039
Showing
2 changed files
with
63 additions
and
1 deletion.
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,56 @@ | ||
<?xml version="1.0"?> | ||
<parameters> | ||
<dbtype>postgres</dbtype> | ||
<driver>org.postgresql.Driver</driver> | ||
<port>5432</port> | ||
<username>postgres</username> | ||
<DBName>postgres</DBName> | ||
<password>Password321</password> | ||
<isolation>TRANSACTION_REPEATABLE_READ</isolation> | ||
|
||
<sslCert></sslCert> | ||
<sslKey></sslKey> | ||
<jdbcURL></jdbcURL> | ||
|
||
<batchSize>128</batchSize> | ||
<useKeyingTime>true</useKeyingTime> | ||
<useThinkTime>true</useThinkTime> | ||
<enableForeignKeysAfterLoad>true</enableForeignKeysAfterLoad> | ||
<hikariConnectionTimeoutMs>180000</hikariConnectionTimeoutMs> | ||
<useStoredProcedures>true</useStoredProcedures> | ||
<displayEnhancedLatencyMetrics>false</displayEnhancedLatencyMetrics> | ||
<trackPerSQLStmtLatencies>false</trackPerSQLStmtLatencies> | ||
|
||
<transactiontypes> | ||
<transaction> | ||
<name>NewOrder</name> | ||
<weight>45</weight> | ||
</transaction> | ||
<transaction> | ||
<name>Payment</name> | ||
<weight>43</weight> | ||
</transaction> | ||
<transaction> | ||
<name>OrderStatus</name> | ||
<weight>4</weight> | ||
</transaction> | ||
<transaction> | ||
<name>Delivery</name> | ||
<weight>4</weight> | ||
</transaction> | ||
<transaction> | ||
<name>StockLevel</name> | ||
<weight>4</weight> | ||
</transaction> | ||
</transactiontypes> | ||
|
||
<runtime>1800</runtime> | ||
<rate>10000</rate> | ||
<!-- | ||
Set the number of retries to 0 as retrying when the number of warehouses is | ||
high is pointless as it just leads to more failures. | ||
--> | ||
<maxRetriesPerTransaction>2</maxRetriesPerTransaction> | ||
<maxLoaderRetries>2</maxLoaderRetries> | ||
|
||
</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