diff options
Diffstat (limited to 'sonar-application/src/main/assembly/conf')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 4c720ee9982..ba48400d9f3 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -50,12 +50,25 @@ #----- Connection pool settings -sonar.jdbc.maxActive=20 -sonar.jdbc.maxIdle=5 -sonar.jdbc.minIdle=2 -sonar.jdbc.maxWait=5000 -sonar.jdbc.minEvictableIdleTimeMillis=600000 -sonar.jdbc.timeBetweenEvictionRunsMillis=30000 +# The maximum number of active connections that can be allocated +# at the same time, or negative for no limit. +#sonar.jdbc.maxActive=50 + +# The maximum number of connections that can remain idle in the +# pool, without extra ones being released, or negative for no limit. +#sonar.jdbc.maxIdle=5 + +# 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 + +# 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 |