diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2022-02-10 12:09:48 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-08-29 20:02:52 +0000 |
commit | 8961d0c0b80dd23b7ed01ea0f249282956374795 (patch) | |
tree | fb1ab3db4f1fdd2c27b6ba1398a06572822a1b25 /sonar-application | |
parent | 4d1bd03543c55e564151d55e3a4763b82bc8e512 (diff) | |
download | sonarqube-8961d0c0b80dd23b7ed01ea0f249282956374795.tar.gz sonarqube-8961d0c0b80dd23b7ed01ea0f249282956374795.zip |
SONAR-17200 Move to HikariCP from Apache DBCP
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index e862e0632b7..d24fd2dc23a 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -64,15 +64,12 @@ # The minimum number of connections that can remain idle in the pool, # without extra ones being created, or zero to create none. -#sonar.jdbc.minIdle=2 +#sonar.jdbc.minIdle=10 # The maximum number of milliseconds that the pool will wait (when there # are no available connections) for a connection to be returned before # throwing an exception, or <= 0 to wait indefinitely. -#sonar.jdbc.maxWait=5000 - -#sonar.jdbc.minEvictableIdleTimeMillis=600000 -#sonar.jdbc.timeBetweenEvictionRunsMillis=30000 +#sonar.jdbc.maxWait=8000 @@ -121,7 +118,7 @@ # The default value is 25. #sonar.web.http.acceptCount=25 -# The number of milliseconds this Connector will wait for another HTTP request before closing the +# The number of milliseconds this Connector will wait for another HTTP request before closing the # connection. The default value is to use the value that has been set for the connectionTimeout # attribute. Use a value of -1 to indicate no (i.e. infinite) timeout. # The default value is 60000 (ms). |