diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2020-01-16 11:05:55 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-05 20:06:21 +0000 |
commit | 8cdee7d30f96e87b8bb7ec55fdfd8101ab717dfd (patch) | |
tree | 7a82e64d82a2b0d6f8c6ab3592aba38a2b58678c /server/sonar-docs | |
parent | 6390f55dcf651f5c9c7a0fb1e54a2ec8594f8940 (diff) | |
download | sonarqube-8cdee7d30f96e87b8bb7ec55fdfd8101ab717dfd.tar.gz sonarqube-8cdee7d30f96e87b8bb7ec55fdfd8101ab717dfd.zip |
SONAR-12686 enforce index rebuilding by changing ES data directory
Diffstat (limited to 'server/sonar-docs')
-rw-r--r-- | server/sonar-docs/src/pages/faq.md | 2 | ||||
-rw-r--r-- | server/sonar-docs/src/pages/setup/troubleshooting.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-docs/src/pages/faq.md b/server/sonar-docs/src/pages/faq.md index 7e2fe09d32c..5061733e951 100644 --- a/server/sonar-docs/src/pages/faq.md +++ b/server/sonar-docs/src/pages/faq.md @@ -20,7 +20,7 @@ This can be automated by using the corresponding Web API: `api/projects/bulk_del Currently, the only way to force a reindex is to: * Stop your server -* Remove the contents of the $SQ_HOME/data/es6 directory +* Remove the contents of the $SQ_HOME/data/es7 directory * Start your server Before doing this, you should be aware first that processes are in place on the SonarQube side that out-of-sync indices are detected and corrected, and second that a full re-index can be quite lengthy depending on the size of your instance. diff --git a/server/sonar-docs/src/pages/setup/troubleshooting.md b/server/sonar-docs/src/pages/setup/troubleshooting.md index a58929c3b34..866db7fa41b 100644 --- a/server/sonar-docs/src/pages/setup/troubleshooting.md +++ b/server/sonar-docs/src/pages/setup/troubleshooting.md @@ -59,13 +59,13 @@ If you still have inconsistencies, you'll need to rebuild the indices (this oper **non-DCE:** 1. Stop SonarQube -1. Delete the data/es6 directory +1. Delete the data/es7 directory 1. Restart SonarQube **DCE:** 1. Stop the whole cluster (ES and application nodes) -1. Delete the data/es6 directory on each ES node +1. Delete the data/es7 directory on each ES node 1. Restart the whole cluster **Note:** See [Configure & Operate a Cluster](/setup/operate-cluster/) for information on stopping and starting a cluster. |