Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 12月 02, 2021
  2. 11月 26, 2021
  3. 11月 23, 2021
  4. 11月 19, 2021
  5. 11月 18, 2021
  6. 11月 13, 2021
  7. 11月 10, 2021
    • Sean McGivern's avatar
      Update Sidekiq to 6.3.1 · 22e8bc0a
      Sean McGivern 创作于
      This means we can remove our patches to use pipelining instead of multi
      and to use an atomic Lua scheduler, because both have been upstreamed!
      
      Changelog: other
      22e8bc0a
  8. 11月 09, 2021
  9. 11月 08, 2021
  10. 11月 06, 2021
  11. 11月 04, 2021
  12. 11月 03, 2021
  13. 11月 02, 2021
  14. 10月 29, 2021
  15. 10月 28, 2021
  16. 10月 27, 2021
    • Heinrich Lee Yu's avatar
      Upgrade sidekiq-cron gem · b0d99d03
      Heinrich Lee Yu 创作于
      Upgrades sidekiq-cron and adds an explicit require for
      sidekiq/job_logger and sidekiq/job_retry. Previously, these were loaded
      by sidekiq-cron's launcher which is now refactored to only load the
      Sidekiq classes when needed.
      b0d99d03
  17. 10月 26, 2021
    • Stan Hu's avatar
      Optimize JIRA ref lookup · 1993feb5
      Stan Hu 创作于
      In a project with JIRA activated, `ProcessCommitWorker` attempts to add
      a comment to a JIRA issue if that issue is mentioned in a
      commit. However, the JIRA integration would attempt to retrieve all tags
      and branches and pick the first matching ref given a commit OID.
      
      The problem with that approach is that after each push, the list of all
      branches and tags are expired and could take a while to gather. Since
      multiple `ProcessCommitWorker` jobs can be running at the same time,
      this can lead to high I/O on Gitaly nodes since multiple
      `ProcessCommitWorker` jobs can run at the same time.
      
      We observe that we don't really need to build the entire ref list; we
      can just ask Gitaly for a single matching ref for the given OID with the
      newly-created `FindRefsByOID` RPC introduced in
      https://gitlab.com/gitlab-org/gitaly/-/merge_requests/3947.
      
      Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/343035
      
      Changelog: performance
      1993feb5
  18. 10月 25, 2021
  19. 10月 23, 2021
  20. 10月 20, 2021
    • Stan Hu's avatar
      Ensure Azure-related gems are loaded · b221a58d
      Stan Hu 创作于
      We attempted to load the gitlab-fog-azure-rm only if it was really
      needed for object storage, but there are a number of cases where we
      don't dynamically load these gems when we need them. To avoid the
      complexity of this dynamic allocation, we now require the gem, just as
      we do with other object storage providers. Unfortunately this adds 5 MB
      to the RAM usage of the process according to derailed_benchmarks, but
      this fairly typical for a gem for object storage.
      
      Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/334853
      
      Changelog: fixed
      b221a58d
  21. 10月 14, 2021
  22. 10月 11, 2021
  23. 10月 07, 2021
  24. 10月 05, 2021
  25. 9月 28, 2021
  26. 9月 23, 2021
  27. 9月 22, 2021
  28. 9月 21, 2021
  29. 9月 20, 2021
  30. 9月 17, 2021
  31. 9月 15, 2021
  32. 9月 14, 2021
  33. 9月 09, 2021
加载中