- 12 Dec, 2017 2 commits
-
-
Zeger-Jan van de Weg authored
-
Zeger-Jan van de Weg authored
The Gitaly CommitService is being hammered by n + 1 calls, mostly when finding commits. This leads to this gRPC being turned of on production: https://gitlab.com/gitlab-org/gitaly/issues/514#note_48991378 Hunting down where it came from, most of them were due to MergeRequest#show. To prove this, I set a script to request the MergeRequest#show page 50 times. The GDK was being scraped by Prometheus, where we have metrics on controller#action and their Gitaly calls performed. On both occations I've restarted the full GDK so all caches had to be rebuild. Current master, 806a68a8, needed 435 requests After this commit, 154 requests
-
- 08 Dec, 2017 26 commits
-
-
Robert Speicher authored
Move the "Limit conflicts with EE" doc to "Automatic CE-> EE merge" See merge request gitlab-org/gitlab-ce!15749
-
Douwe Maan authored
Allow git pull/push on project redirects Closes #35385 See merge request gitlab-org/gitlab-ce!15670
-
Mayra Cabrera authored
-
Mike Greiling authored
Resolve "Deploy markers should be more verbose" Closes #38032 See merge request gitlab-org/gitlab-ce!15641
-
Douwe Maan authored
Resolve "Include asset_sync gem" Closes #40031 See merge request gitlab-org/gitlab-ce!15734
-
Ian Baum authored
-
Douwe Maan authored
Fix N+1 query when displaying events See merge request gitlab-org/gitlab-ce!15788
-
Sean McGivern authored
Use prefix for TableOfContents filter hrefs Closes #38473 See merge request gitlab-org/gitlab-ce!15806
-
Douwe Maan authored
Fix invalid pipeline build chain tag evaluation Closes #40944 See merge request gitlab-org/gitlab-ce!15805
-
Jan Provaznik authored
TableOfContents filter generates hrefs for each header in markdown, if the header text consists from digits and redacted symbols only, e.g. "123" or "1.0 then the auto-generated href has the same format as issue references. If the generated id contains only digits, then 'anchor-' prefix is prepended to the id. Closes #38473
-
Sean McGivern authored
Merge branch '29483-no-feedback-when-checking-on-checklist-if-potential-spam-was-detected' into 'master' Resolve "No feedback when checking on checklist if potential spam was detected" Closes #29483 See merge request gitlab-org/gitlab-ce!15408
-
Luke Bennett authored
-
Kamil Trzcinski authored
-
Yorick Peterse authored
When displaying events we would load the target of those events, then render the entire data using our Markdown pipeline. This pipeline would eventually request the author of every target, leading to an additional query being executed for every target to get the author. To fix this we now eager load the author of the event's target. In my local environment this reduces the number of queries to display a project's Atom feed from 40 to 24 queries. See https://gitlab.com/gitlab-org/gitlab-ce/issues/36878 for more information.
-
Kamil Trzcinski authored
-
Kamil Trzcinski authored
-
Kamil Trzcinski authored
-
Sean McGivern authored
Add docs explaining why you get signed out with "Remember me" checked See merge request gitlab-org/gitlab-ce!15756
-
Grzegorz Bizon authored
-
-
Douwe Maan authored
Check NFS mounts in a separate process Closes #39847 See merge request gitlab-org/gitlab-ce!15426
-
Bob Van Landuyt authored
Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
-
Grzegorz Bizon authored
Fix new personal access token showing up in a flash message Closes #40754 See merge request gitlab-org/gitlab-ce!15707
-
Stan Hu authored
Clean test path between merge request handler tests Closes #40900 See merge request gitlab-org/gitlab-ce!15792
-
Robert Speicher authored
Migrate Git::Repository#fsck to Gitaly Closes gitaly#795 See merge request gitlab-org/gitlab-ce!15731
-
Kim Carlbäcker authored
-
- 07 Dec, 2017 12 commits
-
-
Robert Speicher authored
Use relative _path helper URLs in the GitLab UI Closes #40825 See merge request gitlab-org/gitlab-ce!15738
-
Eric Eastwood authored
-
Jacob Schatz authored
Replace absolute URLs on related branches/MRs with relative url to avoid hostname Closes #40555 See merge request gitlab-org/gitlab-ce!15735
-
Jacob Schatz authored
Fix loading branches list on cherry pick modal after merge. Closes #33894 See merge request gitlab-org/gitlab-ce!15306
-
Jacob Schatz authored
Add documentation about using US-English Closes #40675 See merge request gitlab-org/gitlab-ce!15656
-
Clement Ho authored
-
Jacob Schatz authored
Fix transient error in pikadayToString Closes #40858 See merge request gitlab-org/gitlab-ce!15754
-
Sean McGivern authored
fix #39233 - 500 in merge request Closes #39233 See merge request gitlab-org/gitlab-ce!15774
-
Kamil Trzciński authored
Dependency validator Closes #34834 See merge request gitlab-org/gitlab-ce!14009
-
Jose Ivan Vargas authored
-
Jan Provaznik authored
create_merge_request_handler_spec needs a repository for some tests but this repository lasts on disk by default which causes failures of other tests. TestEnv.clean_test_path is used to get rid of the repository after each test. Closes #40900
-
Martin Nowak authored
- handle unchanged empty lines in inline diff
-