1. 28 10月, 2017 1 次提交
  2. 13 10月, 2017 1 次提交
  3. 12 10月, 2017 1 次提交
  4. 10 10月, 2017 1 次提交
  5. 09 10月, 2017 3 次提交
  6. 07 10月, 2017 2 次提交
    • B
      70716a12
    • T
      Create idea of read-only database · d1366971
      Toon Claes 提交于
      In GitLab EE, a GitLab instance can be read-only (e.g. when it's a Geo
      secondary node). But in GitLab CE it also might be useful to have the
      "read-only" idea around. So port it back to GitLab CE.
      
      Also having the principle of read-only in GitLab CE would hopefully
      lead to less errors introduced, doing write operations when there
      aren't allowed for read-only calls.
      
      Closes gitlab-org/gitlab-ce#37534.
      d1366971
  7. 05 10月, 2017 1 次提交
  8. 04 10月, 2017 1 次提交
  9. 02 10月, 2017 1 次提交
  10. 30 9月, 2017 1 次提交
  11. 19 9月, 2017 2 次提交
    • Y
      Fix refreshing of issues/MR count caches · 57b96eb6
      Yorick Peterse 提交于
      This ensures the open issues/MR count caches are refreshed properly when
      creating new issues or MRs. This MR also includes a change to the cache
      keys to ensure all caches are rebuilt on the fly.
      
      This particular problem was not caught in the test suite due to a null
      cache being used, resulting in all calls that would use a cache using
      the underlying data directly. In production the code would fail because
      a newly saved record returns an empty hash in #changes meaning checks
      such as `state_changed? || confidential_changed?` would return false for
      new rows, thus never updating the counters.
      
      Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/38061
      57b96eb6
    • A
      Detect n+1 issues involving Gitaly · 64d7ec0a
      Andrew Newdigate 提交于
      64d7ec0a
  12. 06 9月, 2017 3 次提交
  13. 01 9月, 2017 1 次提交
  14. 31 8月, 2017 1 次提交
  15. 30 8月, 2017 1 次提交
  16. 29 8月, 2017 4 次提交
  17. 25 8月, 2017 1 次提交
  18. 24 8月, 2017 1 次提交
  19. 23 8月, 2017 1 次提交
    • Y
      Cache the number of open issues and merge requests · 6ec53f5d
      Yorick Peterse 提交于
      Every project page displays a navigation menu that in turn displays the
      number of open issues and merge requests. This means that for every
      project page we run two COUNT(*) queries, each taking up roughly 30
      milliseconds on GitLab.com. By caching these numbers and refreshing them
      whenever necessary we can reduce loading times of all these pages by up
      to roughly 60 milliseconds.
      
      The number of open issues does not include confidential issues. This is
      a trade-off to keep the code simple and to ensure refreshing the data
      only needs 2 COUNT(*) queries instead of 3. A downside is that if a
      project only has 5 confidential issues the counter will be set to 0.
      
      Because we now have 3 similar counting service classes the code
      previously used in Projects::ForksCountService has mostly been moved to
      Projects::CountService, which in turn is reused by the various service
      classes.
      
      Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
      6ec53f5d
  20. 19 8月, 2017 1 次提交
  21. 14 8月, 2017 1 次提交
  22. 13 8月, 2017 1 次提交
  23. 10 8月, 2017 2 次提交
  24. 08 8月, 2017 3 次提交
  25. 01 8月, 2017 1 次提交
  26. 28 7月, 2017 1 次提交
    • Y
      Merge issuable "reopened" state into "opened" · 6ef87a20
      Yorick Peterse 提交于
      Having two states that essentially mean the same thing is very much like
      having a boolean "true" and boolean "mostly-true": it's rather silly.
      This commit merges the "reopened" state into the "opened" state while
      taking care of system notes still showing messages along the lines of
      "Alice reopened this issue".
      
      A big benefit from having only two states (opened and closed) is that
      indexing and querying becomes simpler and more performant. For example,
      to get all the opened queries we no longer have to query both states:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state IN ('opened', 'reopened');
      
      Instead we can query a single state directly, which can be much faster:
      
          SELECT *
          FROM issues
          WHERE project_id = 2
          AND state = 'opened';
      
      Further, only having two states makes indexing easier as we will only
      ever filter (and thus scan an index) using a single value. Partial
      indexes could help but aren't supported on MySQL, complicating the
      development process and not being helpful for MySQL.
      6ef87a20
  27. 24 7月, 2017 1 次提交
  28. 14 7月, 2017 1 次提交