BigW Consortium Gitlab

  1. 23 Jun, 2017 1 commit
  2. 21 Mar, 2017 1 commit
  3. 06 Feb, 2017 2 commits
  4. 10 Jan, 2017 1 commit
  5. 09 Dec, 2016 1 commit
  6. 02 Dec, 2016 1 commit
  7. 29 Nov, 2016 1 commit
  8. 03 Nov, 2016 1 commit
  9. 02 Nov, 2016 1 commit
  10. 31 Oct, 2016 2 commits
  11. 21 Oct, 2016 1 commit
    • Re-organize queues to use for Sidekiq · 97731760
      Yorick Peterse authored
      Dumping too many jobs in the same queue (e.g. the "default" queue) is a
      dangerous setup. Jobs that take a long time to process can effectively
      block any other work from being performed given there are enough of
      these jobs.
      
      Furthermore it becomes harder to monitor the jobs as a single queue
      could contain jobs for different workers. In such a setup the only
      reliable way of getting counts per job is to iterate over all jobs in a
      queue, which is a rather time consuming process.
      
      By using separate queues for various workers we have better control over
      throughput, we can add weight to queues, and we can monitor queues
      better. Some workers still use the same queue whenever their work is
      related. For example, the various CI pipeline workers use the same
      "pipeline" queue.
      
      This commit includes a Rails migration that moves Sidekiq jobs from the
      old queues to the new ones. This migration also takes care of doing the
      inverse if ever needed. This does require downtime as otherwise new jobs
      could be scheduled in the old queues after this migration completes.
      
      This commit also includes an RSpec test that blacklists the use of the
      "default" queue and ensures cron workers use the "cronjob" queue.
      
      Fixes gitlab-org/gitlab-ce#23370
  12. 12 Aug, 2016 2 commits
  13. 17 Jun, 2016 1 commit
  14. 28 Apr, 2016 1 commit
    • Use 'exec' in Unicorn and Sidekiq launch scripts · 8a6776ca
      Jacob Vosmaer authored
      When running Unicorn or Sidekiq in the foreground this change removes
      an intermediate /bin/sh process. This makes process supervision in the
      GitLab Development Kit more reliable.
      
      This change does not affect Omnibus-GitLab (because there we do not
      use these launch scripts). Installations from source do use the launch
      scripts but for the standard GitLab init script this change will not
      make a difference.
      
      Custom installations using Upstart or Systemd may be affected however,
      because under certain configurations these systems count exactly how
      many forks happen during process startup, and we are reducing that
      number by one here.
  15. 22 Apr, 2016 1 commit
  16. 14 Apr, 2016 1 commit
    • Use rake db:reset instead of db:setup · a54af831
      Yorick Peterse authored
      Using db:reset ensures existing tables are first dropped. This in turn
      ensures that we can drop tables regardless of any foreign key
      constraints. While CE currently doesn't have any foreign keys EE defines
      the following relation:
      
          remote_mirrors.project_id -> projects.id
      
      MySQL will complain whenever you try to drop the "projects" table first
      even when using "DROP TABLE ... CASCADE".
  17. 15 Jan, 2016 1 commit
  18. 14 Jan, 2016 1 commit
  19. 08 Dec, 2015 1 commit
  20. 03 Dec, 2015 1 commit
  21. 25 Nov, 2015 1 commit
  22. 05 Oct, 2015 1 commit
  23. 25 Sep, 2015 1 commit
  24. 27 Aug, 2015 1 commit
    • Properly daemonize the mail_room process · 1081a322
      Jacob Vosmaer authored
      The old invocation only worked by accident because we have a '&'
      somewhere in the init script for expediency. When ran from a terminal,
      the mail_room daemon process ended up in the session of the terminal.
      This commit adds a small wrapper that tries to do the textbook
      daemonization steps (double fork, setsid etc.) while also taking
      care that the pidfile is written before the 'start' process exits.
  25. 26 Aug, 2015 1 commit
  26. 19 Aug, 2015 2 commits
  27. 18 Jun, 2015 1 commit
  28. 17 Jun, 2015 1 commit
  29. 04 Jun, 2015 1 commit
  30. 20 May, 2015 2 commits
  31. 01 Apr, 2015 1 commit
  32. 18 Mar, 2015 1 commit
  33. 12 Feb, 2015 1 commit
  34. 18 Jan, 2015 1 commit
  35. 10 Sep, 2014 1 commit