aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/src/main/java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-7580 jdbc_url default value is computed or set by JdbcSettingsSébastien Lesaint2016-05-121-3/+52
| | | | it used to be hardcoded to jdbc:h2:tcp://localhost:9092/sonar, which did not take into account the optionaly specified embedded database port property
* SONAR-7422 do not delete sharememory file in tempDirSébastien Lesaint2016-05-101-4/+48
|
* SONAR-7436 Monitoring of CE process in system WS and consoleSimon Brandhof2016-03-251-9/+7
|
* SONAR-6732 CE and WebServer must share the same startedAt dateSébastien Lesaint2016-03-211-0/+2
|
* SONAR-7435 add sonar.ce.javaOpts and sonar.ce.javaAdditionalOptsSébastien Lesaint2016-03-211-0/+3
| | | | also enforce some JVM parameters
* SONAR-7435 SQ processes should have constant process idsSébastien Lesaint2016-03-211-5/+10
| | | | remove process id generation from JavaCommand
* SONAR-7435 add CE process, never stops but does nothing yetSébastien Lesaint2016-03-211-21/+46
|
* SONAR-7125 use efficient delete dir method in sonar-processSébastien Lesaint2016-02-121-33/+1
|
* SONAR-7125 use nio to clean temp directory at startupSébastien Lesaint2016-02-121-2/+35
| | | | we used to use Commons IO which loads all files in memory, causing OOM in the App process because it is configured with only 16Mb of heap
* SONAR-7154 never delete temp dir, only delete its content if existsSébastien Lesaint2016-02-051-9/+8
|
* SONAR-7168 fileSystem must be reset during a restartSébastien Lesaint2016-01-183-49/+133
| | | | deletion of temp directory is required for uninstalling plugins but also to cleanly start web server (eg. deleting unsuccessfully processed analysis reports)
* Fix project title in copyright headersSimon Brandhof2016-01-136-6/+6
|
* SONAR-7168 add property to change log level of sonar-applicationSébastien Lesaint2016-01-131-3/+3
| | | | property sonar.app.log.level must either be specifid as a command line argument with -D option or in wrapper.conf as a property such as "wrapper.java.additional.1=-Dsonar.app.log.level=TRACE"
* SONAR-7168 fix stop during restart not workingSébastien Lesaint2016-01-131-26/+11
| | | | | lifeCycle transition from RESTARTING to STOPPING should actually _not_ be allowed because it can occur when restarting child processes (the WatcherThreads detects that stop and tries to shutdown all other processes), this fixes the issue by adding a HARD_STOPPING state, representing a not gracefull stop, to which transition from RESTARTING is allowed adds class AllProcessesCommands which implements access to sharedMemory for any process and is now used as the underlying implementation of DefaultProcessCommands. This class allows using a single IO to access sharedMemory from App
* SONAR-7168 rework threads and restart implementationSébastien Lesaint2016-01-131-2/+4
|
* Upgrade to parent 26 and new copyright headersSimon Brandhof2016-01-056-24/+24
|
* SONAR-7140 Do not check java.io.tmpdir in bootstrap processSimon Brandhof2015-12-141-1/+1
|
* SONAR-6799 SONAR-6232 compute engine logsSimon Brandhof2015-09-271-3/+2
| | | | | | - add WS api/ce/logs - add boolean field 'logs' to the responses of the WS that return tasks - purge log files (max nb of files per project can be configured)
* SONAR-6552 Replace jTDS by Microsoft JDBC driver 4.1Julien Lancelot2015-09-171-1/+1
|
* Fix logging of warnings when JDBC URL is not correctSimon Brandhof2015-06-261-2/+2
|
* Fix quality flawsSimon Brandhof2015-06-211-10/+9
|
* Cleanup warningsGabor Liptak2015-06-171-4/+6
|
* Fix quality flawsSimon Brandhof2015-06-053-3/+3
|
* Extract an interface from org.sonar.process.ProcessCommandsSimon Brandhof2015-05-291-1/+2
| | | | | Try to stabilize StopWatcherTest when machine is slow or under pressure. More than 1 second could be spent in the creation of ProcessCommands mock.
* Use StandardCharsets instead of Guava and commons-ioSimon Brandhof2015-05-151-2/+2
|
* Useless codeDavid Gageot2015-05-121-1/+1
|
* Fix quality flawsSimon Brandhof2015-04-241-1/+1
|
* SONAR-6293 refactor loading of default values of sonar.propertiesSimon Brandhof2015-03-304-113/+28
|
* SONAR-6036 : Remove KnownJavaCommand and clean the memory at the startup of ↵Eric Hartmann2015-02-211-2/+1
| | | | the ProcessCommand
* SONAR-6036 use IPC (Inter Process Communication) for monitoringEric Hartmann2015-02-201-2/+2
| | | | processes
* SONAR-6057 Make log rotation more configurable for productionSimon Brandhof2015-02-192-6/+104
|
* SONAR-6115 SonarQube is slower whilst running with Java8 vs Java7Simon Brandhof2015-01-292-5/+9
|
* SONAR-6088 Remove old preview/h2 modeJulien HENRY2015-01-271-11/+3
|
* Fix quality flawsSimon Brandhof2015-01-061-6/+5
|
* Increase default ES max heap size from 256m to 1GSimon Brandhof2014-12-021-1/+1
|
* SONAR-5828 Fix default value of property sonar.jdbc.maxActiveSimon Brandhof2014-11-041-0/+6
|
* SONAR-5605 revert to mysql client cursorSimon Brandhof2014-10-301-1/+0
|
* Revert "Revert "SONAR-5605 MySQL: configure driver to use server side cursor ↵Julien Lancelot2014-10-231-0/+1
| | | | | | | | | and not client side cursor"" This reverts commit cbd911bcb1bc40510fdf56639ef7476612bec24c. Conflicts: sonar-application/src/test/java/org/sonar/application/JdbcSettingsTest.java
* Merge remote-tracking branch 'origin/branch-4.5'Julien Lancelot2014-10-171-1/+0
|\ | | | | | | | | Conflicts: sonar-application/src/test/java/org/sonar/application/JdbcSettingsTest.java
| * Revert "SONAR-5605 MySQL: configure driver to use server side cursor and not ↵Julien Lancelot2014-10-171-1/+0
| | | | | | | | | | | | client side cursor" This reverts commit ccf4726ae0530695bd55903a989bbd6afae1dd5c.
* | Merge remote-tracking branch 'remotes/origin/branch-4.5'Simon Brandhof2014-10-141-3/+2
|\| | | | | | | | | Conflicts: sonar-application/src/main/java/org/sonar/application/DefaultSettings.java
| * SONAR-5710 remove duplicated JVM options in command-lineSimon Brandhof2014-10-141-3/+2
| |
* | Merge remote-tracking branch 'origin/branch-4.5'Julien Lancelot2014-10-141-0/+1
|\| | | | | | | | | | | | | | | | | Conflicts: plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/XooPlugin.java sonar-application/src/main/assembly/conf/sonar.properties sonar-application/src/test/java/org/sonar/application/JdbcSettingsTest.java sonar-core/src/main/java/org/sonar/core/persistence/DatabaseVersion.java sonar-core/src/main/resources/org/sonar/core/persistence/rows-h2.sql
| * SONAR-5605 MySQL: configure driver to use server side cursor and not client ↵Julien Lancelot2014-10-101-0/+1
| | | | | | | | side cursor
* | Fix quality flawsSimon Brandhof2014-10-091-8/+6
| |
* | SONAR-5687 refactor configuration of clusterSimon Brandhof2014-10-091-2/+2
| |
* | Central definition of properties shared by ES, web and monitor processesSimon Brandhof2014-10-084-43/+33
|/
* SONAR-5710 Some JVM options should not be configurableSimon Brandhof2014-10-081-0/+2
|
* SONAR-5709 Add properties sonar.search.javaAdditionalOpts and ↵Simon Brandhof2014-10-082-1/+7
| | | | sonar.web.javaAdditionalOpts
* SONAR-5621 merge log filesSimon Brandhof2014-09-241-1/+5
|