summaryrefslogtreecommitdiff
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Add the rspec_profiling gem and documentation to the GitLab development ↵23034-enable-rspec-profilingNick Thomas2017-01-271-0/+14
| | | | environment
* Merge branch 'mysql-sources-utf8mb4-fix' into 'master'Rémy Coutable2017-01-261-4/+4
|\ | | | | | | | | Gitlab from sources : proper utf8mb4 support for MySQL 5.5 to 5.7 See merge request !8508
| * Gitlab from sources : proper utf8mb4 support for MySQL 5.5 to 5.7Guillaume Simon2017-01-121-4/+4
| |
* | Merge branch 'refresh-authorizations-fork-join' into 'master' Douwe Maan2017-01-251-0/+9
|\ \ | | | | | | | | | | | | | | | | | | Fix race conditions for AuthorizedProjectsWorker Closes #26194 and #26310 See merge request !8701
| * | Fix race conditions for AuthorizedProjectsWorkerrefresh-authorizations-fork-joinYorick Peterse2017-01-251-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were two cases that could be problematic: 1. Because sometimes AuthorizedProjectsWorker would be scheduled in a transaction it was possible for a job to run/complete before a COMMIT; resulting in it either producing an error, or producing no new data. 2. When scheduling jobs the code would not wait until completion. This could lead to a user creating a project and then immediately trying to push to it. Usually this will work fine, but given enough load it might take a few seconds before a user has access. The first one is problematic, the second one is mostly just annoying (but annoying enough to warrant a solution). This commit changes two things to deal with this: 1. Sidekiq scheduling now takes places after a COMMIT, this is ensured by scheduling using Rails' after_commit hook instead of doing so in an arbitrary method. 2. When scheduling jobs the calling thread now waits for all jobs to complete. Solution 2 requires tracking of job completions. Sidekiq provides a way to find a job by its ID, but this involves scanning over the entire queue; something that is very in-efficient for large queues. As such a more efficient solution is necessary. There are two main Gems that can do this in a more efficient manner: * sidekiq-status * sidekiq_status No, this is not a joke. Both Gems do a similar thing (but slightly different), and the only difference in their name is a dash vs an underscore. Both Gems however provide far more than just checking if a job has been completed, and both have their problems. sidekiq-status does not appear to be actively maintained, with the last release being in 2015. It also has some issues during testing as API calls are not stubbed in any way. sidekiq_status on the other hand does not appear to be very popular, and introduces a similar amount of code. Because of this I opted to write a simple home grown solution. After all, all we need is storing a job ID somewhere so we can efficiently look it up; we don't need extra web UIs (as provided by sidekiq-status) or complex APIs to update progress, etc. This is where Gitlab::SidekiqStatus comes in handy. This namespace contains some code used for tracking, removing, and looking up job IDs; all without having to scan over an entire queue. Data is removed explicitly, but also expires automatically just in case. Using this API we can now schedule jobs in a fork-join like manner: we schedule the jobs in Sidekiq, process them in parallel, then wait for completion. By using Sidekiq we can leverage all the benefits such as being able to scale across multiple cores and hosts, retrying failed jobs, etc. The one downside is that we need to make sure we can deal with unexpected increases in job processing timings. To deal with this the class Gitlab::JobWaiter (used for waiting for jobs to complete) will only wait a number of seconds (30 by default). Once this timeout is reached it will simply return. For GitLab.com almost all AuthorizedProjectWorker jobs complete in seconds, only very rarely do we spike to job timings of around a minute. These in turn seem to be the result of external factors (e.g. deploys), in which case a user is most likely not able to use the system anyway. In short, this new solution should ensure that jobs are processed properly and that in almost all cases a user has access to their resources whenever they need to have access.
* | | Merge branch 'dz-fix-group-canonical-route' into 'master' Dmitriy Zaporozhets2017-01-251-4/+2
|\ \ \ | | | | | | | | | | | | | | | | Fix 500 error for Group#web_url method if nested group See merge request !8743
| * | | Fix 500 error for Group#web_url method if nested groupdz-fix-group-canonical-routeDmitriy Zaporozhets2017-01-241-4/+2
| |/ / | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Add metric initializer specadd-metrics-initializer-specSean McGivern2017-01-241-104/+115
|/ / | | | | | | | | | | | | | | | | | | An empty file in one of the instrumented directories will cause the app to fail to start when metrics are enabled. Metrics aren't enabled by default in development or test. We could handle the empty file case explicitly, but a file could still not define the constant it is expected to, so instead run the initializer manually in a spec and check that it succeeds.
* | Merge branch '26138-combine-webhooks-and-services-settings-pages' into 'master' Rémy Coutable2017-01-201-1/+1
|\ \ | | | | | | | | | | | | Moved the webhooks and services gear options to a single one called integrations See merge request !8380
| * | Moved the webhooks and services gear options to a single one called integrationsJose Ivan Vargas2017-01-181-1/+1
| | |
* | | Merge branch 'feature/gitaly-feature-flag' into 'master' Robert Speicher2017-01-191-0/+6
|\ \ \ | |/ / |/| | | | | | | | Gitaly feature flag See merge request !8440
| * | Pass Gitaly resource path to gitlab-workhorse if Gitaly is enabledfeature/gitaly-feature-flagAhmad Sherif2017-01-181-0/+6
| |/
* | Merge branch 'backport-time-tracking-ce' into 'master' Douwe Maan2017-01-181-0/+2
|\ \ | | | | | | | | | | | | Backport timetracking to CE See merge request !8195
| * | Backport timetracking frontend to CE.Bryce Johnson2017-01-151-0/+2
| | |
* | | Merge branch '24915_merge_slash_command' into 'master' Sean McGivern2017-01-171-0/+1
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Support `/merge` slash command for MRs Closes #24915 See merge request !7746
| * | refresh merge widget after using /merge commandJarka Kadlecova2017-01-111-0/+1
| | |
* | | change how pagination component is loadedpipelines_missing_paginationRegis2017-01-151-1/+0
| |/ |/|
* | Add basic searchClement Ho2017-01-091-0/+1
|/
* Merge branch 'master' into auto-pipelines-vueRegis2017-01-092-0/+5
|\
| * Merge branch 'track_last_used_date_of_ssh_keys' into 'master' Sean McGivern2017-01-091-0/+1
| |\ | | | | | | | | | | | | Record and show last used date of SSH Keys See merge request !8113
| | * Record and show last used date of SSH KeysVincent Wong2017-01-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Addresses: Issue #13810 1. Adds a last_used_at attribute to the Key table/model 2. Update a key's last_used_at whenever it gets used 3. Display how long ago an ssh key was last used
| * | Merge branch '25985-combine-members-and-groups-settings-pages' into 'master' Alfredo Sumaran2017-01-061-0/+4
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Moved the members and groups to single option called members Closes #25985 See merge request !8281
| | * | Moved the members (project_members)option to a single controller called membersJose Ivan Vargas2017-01-031-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This controller is going to contain both the project members and groups options for the settings gear. Generated the route and modified the routing to point to the new members setting path
* | | | Merge branch 'master' into auto-pipelines-vueFilipa Lacerda2017-01-051-0/+6
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (35 commits) Adds back removed class in merge request pipelines table Fix dropdown icon alignment Simplify HTML of mini pipeline graph and dropdown Creates individual html for dropdown Adds simplified CSS for the new dropdown Removes old CSS Improves dropdown item in Chrome, Firefox and Safari Use SCSS variables for colors. Fix scss linter errors Adds animation when the stage is hovered. Adds back tooltip on dropdown toggle Fixes broken tests additional css changes to get more into direction of mockups Adds CHANGELOG entry Removes unneeded `window` declaration Decreases font-size on login page Ensure internal Gitlab::Git references use the namespace Absorb gitlab_git Fix review comments. Add spec for note edit and fix one commented spec. Review fixes. Use gl.utils.isInViewport and improve gl.utils.animateToElement. Make sure elements share the same scope Hide edit warning element when form reverted. Remove unnecessary styling came from merge conflicts. Fix single note edit form specs. Separate edit form in Changes and Discussions tab. Fix warning styling for responsive design. Fix task list for single edit note widget changes. Fix notes spec. ...
| * | | Merge branch 'monkey-patch-comment' into 'master' Rémy Coutable2017-01-051-0/+6
| |\ \ \ | | |/ / | |/| | | | | | | | | | Explain why we have this monkey-patch See merge request !8329
| | * | Explain why there is a monkey-patchJacob Vosmaer2016-12-271-0/+6
| | |/
* | | fix pipelines/index.html.haml merge conflictRegis2017-01-022-3/+2
|\ \ \ | |/ /
| * | Merged the 'groups' and 'projects' tabs when viewing user profilesJames Gregory2016-12-291-1/+0
| | |
| * | Fix 500 error when visit group from admin area if group name contains dotdz-improve-admin-group-routingDmitriy Zaporozhets2016-12-281-1/+1
| |/ | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * Merge branch 'feature/more-storage-statistics' into 'master' Sean McGivern2016-12-261-1/+1
| |\ | | | | | | | | | | | | Add more storage statistics See merge request !7754
| | * Add more storage statisticsMarkus Koller2016-12-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
* | | merge master and fix application.rb conflictRegis2016-12-234-5/+32
|\ \ \ | |/ /
| * | Merge branch 'permit-uploadedfile-scalar' into 'master' Rémy Coutable2016-12-231-0/+16
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Monkey-patch StrongParameters for ::UploadedFile Closes gitlab-ee#1451 See merge request !8299
| | * | Monkey-patch StrongParameters for ::UploadedFileJacob Vosmaer2016-12-231-0/+16
| | | |
| * | | Merge branch '25896-fix-404-katax-fonts' into 'master' Alfredo Sumaran2016-12-221-0/+2
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "KaTeX fonts 404 on gitlab.com" Closes #25896 See merge request !8228
| | * | | Add KaTeX fonts to assets paths and precompileHiroyuki Sato2016-12-221-0/+2
| | | | |
| * | | | Merge branch '23638-remove-builds-tab' into 'master' Kamil Trzciński2016-12-211-4/+0
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | Resolve "Remove Builds tab from Merge Requests and Commits" Closes #23638 See merge request !7763
| | * | | Changes after reviewFilipa Lacerda2016-12-211-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix broken test Remove spinach tests for the builds tab
| | * | | Remove builds tab from commitFilipa Lacerda2016-12-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unused file Fix commit link
| | * | | Removes builds tab from merge requestFilipa Lacerda2016-12-211-1/+0
| | | | | | | | | | | | | | | | | | | | Fix specs
| * | | | Merge branch 'backport-mr-widget-ci-js' into 'master' Alfredo Sumaran2016-12-211-0/+1
| |\ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | Backport moving MR widget CI JS out of script tag See merge request !8200
| | * | | Remove unneeded bundle refs.backport-mr-widget-ci-jsBryce Johnson2016-12-211-2/+0
| | | | |
| | * | | Backport moving MR widget CI JS out of script tag.Bryce Johnson2016-12-211-0/+3
| | | | |
| * | | | Merge branch 'zj-mattermost-slash-config' into 'master' Kamil Trzciński2016-12-212-1/+3
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | Mattermost slash auto config Closes #24769 See merge request !8070
| | * | | Merge remote-tracking branch 'origin/master' into zj-mattermost-slash-configKamil Trzcinski2016-12-205-1/+12
| | |\ \ \ | | | | |/ | | | |/|
| | * | | Improve sourcesKamil Trzcinski2016-12-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add proper error handling, - Use flash[:alert] and flash[:notice], - Use `resource` instead of `resources`,
| | * | | Minor adjustments API MattermostZ.J. van de Weg2016-12-191-5/+1
| | | | | | | | | | | | | | | | | | | | [ci skip]
| | * | | Merge branch 'master' into 'zj-mattermost-slash-config'Zeger-Jan van de Weg2016-12-1811-10/+43
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # config/gitlab.yml.example # lib/mattermost/session.rb # spec/lib/mattermost/session_spec.rb
| | * | | | Fix configure routeLuke "Jared" Bennett2016-12-171-1/+1
| | | | | |
| | * | | | Add tests for auto configure slash commandsZ.J. van de Weg2016-12-161-1/+0
| | | | | |