diff options
author | G. Ann Campbell <ann.campbell@sonarsource.com> | 2019-06-11 11:58:11 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-06-11 20:21:11 +0200 |
commit | 6735772f7953ec4703abf17da30f6d7982bf5dc5 (patch) | |
tree | d6e6ec1aca393033d1211b25bf951c34a52c268d /server/sonar-docs/src/pages/requirements | |
parent | 3286e28fcdf3cde16c87df3550f73f04ee9879fa (diff) | |
download | sonarqube-6735772f7953ec4703abf17da30f6d7982bf5dc5.tar.gz sonarqube-6735772f7953ec4703abf17da30f6d7982bf5dc5.zip |
DOC add ES free disk space req.
Diffstat (limited to 'server/sonar-docs/src/pages/requirements')
-rw-r--r-- | server/sonar-docs/src/pages/requirements/hardware-recommendations.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-docs/src/pages/requirements/hardware-recommendations.md b/server/sonar-docs/src/pages/requirements/hardware-recommendations.md index 8e0009d9d68..42cc4e9ec26 100644 --- a/server/sonar-docs/src/pages/requirements/hardware-recommendations.md +++ b/server/sonar-docs/src/pages/requirements/hardware-recommendations.md @@ -20,6 +20,7 @@ In case your SonarQube Server is running on Linux and you are using Oracle, the * It is recommended to set the min and max memory to the same value to prevent the heap from resizing at runtime, a very costly process. See -Xms and -Xmx of property `sonar.search.javaOpts`. ## Disk +* Free disk space is an absolute requirement. ES will lock indices in read-only mode if free disk space drops below 20%. * Disk can easily become the bottleneck of ES. If you can afford SSDs, they are by far superior to any spinning media. SSD-backed nodes see boosts in both query and indexing performance. If you use spinning media, try to obtain the fastest disks possible (high performance server disks 15k RPM drives). * Make sure to increase the number of open files descriptors on the machine (or for the user running SonarQube server). Setting it to 32k or even 64k is recommended. See [this ElasticSearch article](https://www.elastic.co/guide/en/elasticsearch/reference/current/file-descriptors.html). * Using RAID 0 is an effective way to increase disk speed, for both spinning disks and SSD. There is no need to use mirroring or parity variants of RAID because of Elasticsearch replicas and database primary storage. |