From: michaelbirnstiehl Date: Wed, 17 Nov 2021 15:19:29 +0000 (-0600) Subject: DOCS delete the architecture and integration page X-Git-Tag: 9.2.0.49834~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eecc9f5dfadb540e9782582d51eb0497d1634449;p=sonarqube.git DOCS delete the architecture and integration page --- diff --git a/server/sonar-docs/src/pages/architecture/architecture-integration.md b/server/sonar-docs/src/pages/architecture/architecture-integration.md deleted file mode 100644 index 5dac3b80a58..00000000000 --- a/server/sonar-docs/src/pages/architecture/architecture-integration.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Architecture and Integration -url: /architecture/architecture-integration/ ---- -## Overview -The SonarQube Platform is made of 4 components: -![SonarQube Platform.](/images/architecture-scanning.png) - -1. One SonarQube Server starting 3 main processes: - * Web Server for developers, managers to browse quality snapshots and configure the SonarQube instance - * Search Server based on Elasticsearch to back searches from the UI - * Compute Engine Server in charge of processing code analysis reports and saving them in the SonarQube Database -2. One SonarQube Database to store: - * the configuration of the SonarQube instance (security, plugins settings, etc.) - * the quality snapshots of projects, views, etc. -3. Multiple SonarQube Plugins installed on the server, possibly including language, SCM, integration, authentication, and governance plugins -4. One or more SonarScanners running on your Build / Continuous Integration Servers to analyze projects - -## Integration -The following schema shows how SonarQube integrates with other DevOps Platform tools and where the various components of SonarQube are used. -![SonarQube Integration.](/images/architecture-integrate.png) - -1. Developers code in their IDEs and use [SonarLint](https://sonarlint.org) to run local analysis. -2. Developers push their code into their favourite SCM : git, SVN, TFVC, ... -3. The Continuous Integration Server triggers an automatic build, and the execution of the SonarScanner required to run the SonarQube analysis. -4. The analysis report is sent to the SonarQube Server for processing. -5. SonarQube Server processes and stores the analysis report results in the SonarQube Database, and displays the results in the UI. -6. Developers review, comment, challenge their Issues to manage and reduce their Technical Debt through the SonarQube UI. -7. Managers receive Reports from the analysis. -Ops use APIs to automate configuration and extract data from SonarQube. -Ops use JMX to monitor SonarQube Server. - -## About Machines and Locations -* The SonarQube Platform cannot have more than one SonarQube Server (although the Server can be installed [as a cluster](/setup/install-cluster/)) and one SonarQube Database. -* For optimal performance, each component (server, database, scanners) should be installed on a separate machine, and the server machine(s) should be dedicated. -* SonarScanners scale by adding machines. -* All machines must be time synchronized. -* The SonarQube Server and the SonarQube Database must be located in the same network -* SonarScanners don't need to be on the same network as the SonarQube Server. -* There is **no communication** between **SonarScanners** and the **SonarQube Database**.