]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15256 Reorganize upgrading docs and add practice upgrade info
authormichaelbirnstiehl <michael.birnstiehl@sonarsource.com>
Tue, 17 Aug 2021 21:17:56 +0000 (16:17 -0500)
committersonartech <sonartech@sonarsource.com>
Tue, 24 Aug 2021 20:07:42 +0000 (20:07 +0000)
server/sonar-docs/src/pages/setup/before-you-upgrade.md [new file with mode: 0644]
server/sonar-docs/src/pages/setup/upgrading.md
server/sonar-docs/static/StaticNavigationTree.json

diff --git a/server/sonar-docs/src/pages/setup/before-you-upgrade.md b/server/sonar-docs/src/pages/setup/before-you-upgrade.md
new file mode 100644 (file)
index 0000000..0fd9625
--- /dev/null
@@ -0,0 +1,45 @@
+---
+title: Before You Upgrade
+url: /setup/before-you-upgrade/
+---
+
+This page contains some concepts and recommendations that you should familiarize yourself with before upgrading. See the [Upgrade Guide](/setup/upgrading/) for information on the actual upgrade process.
+
+## SonarQube version number format
+Version numbers have up to three digits with each digit representing part of the release cycle:
+
+![SonarQube version number format](/images/version.png)
+
+**Major version number**  
+The major version number represents a series of releases with high-level objectives for the release cycle. It's incremented with the release following an LTS version (for example, the release following 7.9 LTS was 8.0).
+
+**Minor version number**  
+The minor version number corresponds to incremental functional changes within a major release cycle. At the time of an LTS release, the release cycle is closed and the minor version number is frozen.
+
+**Patch release number**  
+Only on LTS versions, the patch release number represents patches to an LTS that fixed blocker or critical problems. The patch release number isn't considered in your upgrade migration path, and your migration path is the same no matter which patch number you are on.
+
+## Migration path
+Upgrading across multiple non-LTS versions is handled automatically. However, if there are one or multiple LTS versions in your migration path, you must first migrate to each intermediate LTS and then to your target version, as shown in **Example 3** below.
+
+[[info]]
+|If you're migrating from an earlier patch version of an LTS, you can upgrade directly to the next LTS. You don't need to install any intermediate patch versions.
+
+**Migration Path Examples**:
+
+**Example 1** – From 8.1 > 9.0, the migration path is 8.1 > 8.9.1 LTS > 9.0  
+**Example 2** – From 8.2 > 8.9 LTS, the migration path is 8.2 > the latest 8.9 LTS patch.  
+**Example 3** – From 6.7.7 LTS > 8.9 LTS, the migration path is 6.7.7 LTS > 7.9.6 LTS > the latest 8.9 LTS patch.
+
+## Release Upgrade Notes
+Usually SonarQube releases come with some specific recommendations for upgrading from the previous version. You should read the [Release Upgrade Notes](/setup/upgrade-notes/) for each version between your current version and the target version.
+
+## Practice your upgrade
+We recommend practicing your upgrade to:
+- make sure your infrastructure can run the upgrade.
+- get an idea of how long the upgrade will take.
+- gain a better understanding of the upgrade process and anticipate what you'll need to do when performing the actual upgrade.
+- address any issues you encounter during the practice upgrade on the [SonarSource Community](https://community.sonarsource.com/).
+
+To practice your upgrade, create a staging environment using a recent backup of your production database. You want your staging environment to be as similar to your production instance as possible because the resources and time needed to upgrade depends on what's stored in your database. Use this staging environment to test the upgrade, observing how long it takes to back up and restore systems and complete the process.
+
index 2d3ca7f7def4b0f20445b19df841253e873c05d8..8d6760b39406f3095c9889d05d995bc4107ba74b 100644 (file)
@@ -4,18 +4,18 @@ url: /setup/upgrading/
 ---
 This is a generic guide for upgrading across versions of SonarQube. Carefully read the [Release Upgrade Notes](/setup/upgrade-notes/) of your target version and of any intermediate version(s).
 
-To understand the upgrading process and important concepts, see the [Upgrading Concepts](/setup/upgrading-concepts] documentation
+Before upgrading, we recommend practicing your upgrade on a staging environment as similar to your production environment as possible. For more on this and other important upgrading concepts, read through the [Before You Upgrade](/setup/before-you-upgrade/) page
 
 [[warning]]
-| Before you start, back up your SonarQube Database. Upgrade problems are rare, but you'll want the backup if anything does happen.
+| Before upgrading, back up your SonarQube database. Upgrade problems are rare, but you'll want the backup if anything does happen.
 
 ## Database disk usage recommendations
-During your upgrade, tables may be duplicated to speed up the migration process, and this could cause your database disk usage to double. Because of this, we recommend that your database disk usage is below 50% before starting a migration.
+During your upgrade, tables may be duplicated to speed up the migration process. This could cause your database disk usage to temporarily increase to as much as double the normal usage. Because of this, we recommend that your database disk usage is below 50% before starting a migration.
 
 ## Upgrading from the ZIP file
 
 1. Download and unzip the SonarQube distribution of your edition in a fresh directory, let's say `$NEW_SONAR_HOME`
-2. Manually install additional plugins that are compatible with your version of SonarQube. Use the [Compatibility Matrix](https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix) to ensure that the versions you install are compatible with your server version. Simply copying plugins from the old server to the new is not recommended; incompatible or duplicate plugins could cause startup errors. Analysis of all languages provided by your edition is available by default without plugins.
+2. If you're using third-party plugins, Manually install plugins that are compatible with your version of SonarQube. Use the [Compatibility Matrix](https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix) to ensure that the versions you install are compatible with your server version. Simply copying plugins from the old server to the new is not recommended; incompatible or duplicate plugins could cause startup errors. Analysis of all languages provided by your edition is available by default without plugins.
 3. Update the contents of `sonar.properties` and `wrapper.conf` files (in `$NEW_SONAR_HOME/conf`) with the settings of the related files in the `$OLD_SONAR_HOME/conf` directory (web server URL, database, ldap settings, etc.). Do not copy-paste the old files.
 If you are using the Oracle DB, copy its JDBC driver into `$NEW_SONAR_HOME/extensions/jdbc-driver/oracle`
 4. Stop your old SonarQube Server
@@ -26,7 +26,7 @@ If you are using the Oracle DB, copy its JDBC driver into `$NEW_SONAR_HOME/exten
 ## Upgrading from the Docker image
 
 [[info]]
-| If you're upgrading with an Oracle database or you're using additional plugins, you can reuse your extensions volume from the previous version to avoid moving plugins or drivers. Use the [Compatibility Matrix](https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix) to ensure that your plugins are compatible with your version. Analysis of all languages provided by your edition is available by default without plugins.
+| If you're upgrading with an Oracle database or you're using plugins, you can reuse your extensions volume from the previous version to avoid moving plugins or drivers. Use the [Compatibility Matrix](https://docs.sonarqube.org/display/PLUG/Plugin+Version+Matrix) to ensure that your plugins are compatible with your version. Analysis of all languages provided by your edition is available by default without plugins.
 
 To upgrade SonarQube using the Docker image:
 
@@ -59,12 +59,13 @@ To upgrade SonarQube using the Docker image:
 
 No specific Docker operations are needed, just use the new tag.
 
-### Upgrading from the Helm Chart
+## Upgrading from the Helm Chart
 
 Follow the instructions in the **Upgrade** section of the SonarQube Helm Chart repository [README](https://github.com/SonarSource/helm-chart-sonarqube/tree/master/charts/sonarqube).
 
-## Edition Upgrade
-If you're moving to a different edition within the same version (upgrade or downgrade) the steps are exactly the same as above, without the need to browse to `http://yourSonarQubeServerURL/setup` or reanalyze your projects.
+## Changing your edition
+
+If you're moving to a different edition within the same version of SonarQube (for example, from Community Edition to a commercial edition), the steps are exactly the same as above without needing to navigate to `http://yourSonarQubeServerURL/setup` or reanalyze your projects.
 
 ## Migrating from a ZIP file instance to a Docker instance
 To migrate from the ZIP file to Docker:
@@ -72,13 +73,13 @@ To migrate from the ZIP file to Docker:
 2. Shut down your ZIP instance.
 3. Start your Docker instance.
 
-## Additional Information
+## Additional steps and information
 
-### Oracle Clean-up
+### Oracle clean-up
 
 Starting with version 6.6, there's an additional step you may want to perform if you're using Oracle. On Oracle, the database columns to be dropped are now marked as UNUSED and are not physically dropped anymore. To reclaim disk space, Oracle administrators must drop these unused columns manually. The SQL request is `ALTER TABLE foo DROP UNUSED COLUMNS`. The relevant tables are listed in the system table `all_unused_col_tabs`.
 
-### Additional Database Maintenance
+### Additional database maintenance
 
 We recommend refreshing your database's statistics and rebuilding your database's indices once you've finished the technical upgrade, but before you reanalyze your projects.
 
@@ -88,22 +89,18 @@ For PostgreSQL, that means executing `VACUUM FULL`. According to the PostgreSQL
 In normal PostgreSQL operation, tuples that are deleted or obsoleted by an update are not physically removed from their table; they remain present until a VACUUM is done.
 ```
 
-### Scanner Update
+### Scanner update
 
-When upgrading SonarQube, you should also make sure you’re using the latest versions of the SonarQube scanners to take advantage of features and fixes on the scanner side. Please check the documentation pages of the Scanners you use for the most recent version compatible with SonarQube and your build tools.
+When upgrading SonarQube, you should also make sure you’re using the latest versions of the SonarQube scanners to take advantage of features and fixes on the scanner side. Please check the documentation pages of the scanners you use for the most recent version compatible with SonarQube and your build tools.
 
-### SonarQube as a Linux or Windows Service
+### SonarQube as a Linux or Windows service
 
-If you use external configuration, such as a script or Windows Service to control your server, you'll need to update it to point to `$NEW_SONAR_HOME`.
+If you use an external configuration, such as a script or Windows Service to control your server, you'll need to update it to point to `$NEW_SONAR_HOME`.
 - For Linux it depends how you implemented the service
 - For Windows you can update your service by running:
 ```
 sc config SonarQube binPath= "\"$NEW_SONAR_HOME\bin\windows-x86-64\wrapper.exe\" -s \"$NEW_SONAR_HOME\conf\wrapper.conf\""
 ```
 
-### Rebuilding Indexes
-If your upgrade requires the rebuild of Elasticsearch indexes, your projects and Applications will become available as they are reindexed. Portfolios won't be available until all projects are indexed.
-
-## Release Upgrade Notes
-
-Usually SonarQube releases come with some specific recommendations for upgrading from the previous version. You should read the upgrade notes for each version between your current version and the target version.
+### Rebuilding indexes
+If your upgrade requires the rebuild of Elasticsearch indexes, your projects and applications will become available as they are reindexed. Portfolios won't be available until all projects are indexed.
\ No newline at end of file
index 7f90ec1ee1b1c5a75590c6fd101339e28eb9240b..ad73a106e4a456c77a385fac174e66356e859634 100644 (file)
                  "/setup/sonarqube-cluster-on-kubernetes/"
         ]
       },
-      "/setup/upgrading/",
+      {
+        "title": "Upgrade the Server",
+        "children": [
+                 "/setup/before-you-upgrade/",
+                 "/setup/upgrading/"
+        ]
+      },
       "/setup/upgrade-notes/",
       "/setup/troubleshooting/"
     ]