aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src
diff options
context:
space:
mode:
authorJacek <jacek.poreda@sonarsource.com>2022-02-10 12:09:48 +0100
committersonartech <sonartech@sonarsource.com>2022-08-29 20:02:52 +0000
commit8961d0c0b80dd23b7ed01ea0f249282956374795 (patch)
treefb1ab3db4f1fdd2c27b6ba1398a06572822a1b25 /server/sonar-docs/src
parent4d1bd03543c55e564151d55e3a4763b82bc8e512 (diff)
downloadsonarqube-8961d0c0b80dd23b7ed01ea0f249282956374795.tar.gz
sonarqube-8961d0c0b80dd23b7ed01ea0f249282956374795.zip
SONAR-17200 Move to HikariCP from Apache DBCP
Diffstat (limited to 'server/sonar-docs/src')
-rw-r--r--server/sonar-docs/src/pages/instance-administration/monitoring.md11
-rw-r--r--server/sonar-docs/src/pages/setup/upgrade-notes.md5
2 files changed, 9 insertions, 7 deletions
diff --git a/server/sonar-docs/src/pages/instance-administration/monitoring.md b/server/sonar-docs/src/pages/instance-administration/monitoring.md
index dc3793942dd..86454696cb7 100644
--- a/server/sonar-docs/src/pages/instance-administration/monitoring.md
+++ b/server/sonar-docs/src/pages/instance-administration/monitoring.md
@@ -72,14 +72,11 @@ All these MBeans are read-only. It's not possible to modify or reset their value
| Attribute Name | Description
| ---|---
| MigrationStatus | Possible values are: UP_TO_DATE, REQUIRES_UPGRADE, REQUIRES_DOWNGRADE, FRESH_INSTALL (only available for WebServer).
-| PoolActiveConnections | Number of active database connections
+| PoolActiveConnections | Number of active database connections
| PoolIdleConnections | Number of database connections waiting to be used
-| PoolInitialSize | Initial size of the database connections pool.
-| PoolMaxActiveConnections | Maximum number of active database connections
-| PoolMaxIdleConnections | Maximum number of database connections waiting to be used
-| PoolMaxWaitMillis | In milliseconds
-| PoolRemoveAbandoned | Possible values : true, false
-| PoolRemoveAbandonedTimeoutSeconds | In Seconds
+| PoolMaxConnections | Maximum number of active database connections
+| PoolTotalConnections | Total number of connections currently in the pool
+| PoolMaxWaitMillis | Maximum number of milliseconds that a client will wait for a connection from the pool
[[collapse]]
| ## SonarQube MBean
diff --git a/server/sonar-docs/src/pages/setup/upgrade-notes.md b/server/sonar-docs/src/pages/setup/upgrade-notes.md
index 3499865db4d..5761e3f41f9 100644
--- a/server/sonar-docs/src/pages/setup/upgrade-notes.md
+++ b/server/sonar-docs/src/pages/setup/upgrade-notes.md
@@ -3,6 +3,11 @@ title: Release Upgrade Notes
url: /setup/upgrade-notes/
---
+## Release 9.7 Upgrade notes
+
+**Database Connection Pool Changed**
+Database connection pool has been changed, following properties will no longer have effect: sonar.jdbc.maxIdle, sonar.jdbc.minEvictableIdleTimeMillis, sonar.jdbc.timeBetweenEvictionRunsMillis. See documentation for changes in [monitoring database connection pool](/instance-administration/monitoring/).
+
## Release 9.6 Upgrade notes
**Microsoft SQL Server changes in configuration and Integrated Authentication**
* If your Microsoft SQL Server doesn't support encryption, you will need to add `encrypt=false` to the JDBC URL connection string. ([SONAR-16249](https://jira.sonarsource.com/browse/SONAR-16249)).