Skip to content
Snippets Groups Projects
  1. Apr 17, 2018
  2. Apr 10, 2018
    • blackst0ne's avatar
      [Rails5] Fix running spinach tests · 1a455f3d
      blackst0ne authored
      1. Add support for `RAILS5=1|true` for the `bin/spinach` command.
      2. Synchronize used spinach versions both for rails4 and rails5.
      
      For rails5 it was accidently used spinach 0.10.1 instead of 0.8.10.
      That brought some problems on running spinach tests.
      
      Example of failure message:
      
      NoMethodError: undefined method `line' for #<Spinach::Scenario:0x000000000c86ba80>
      Did you mean?  lines
        /builds/gitlab-org/gitlab-ce/features/support/env.rb:52:in `before_scenario_run'
      1a455f3d
  3. Apr 02, 2018
  4. Mar 21, 2018
  5. Feb 20, 2018
  6. Jan 26, 2018
  7. Jan 19, 2018
  8. Dec 08, 2017
    • Bob Van Landuyt's avatar
      Move the circuitbreaker check out in a separate process · f1ae1e39
      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.
      f1ae1e39
  9. Oct 13, 2017
  10. Aug 09, 2017
  11. Jul 22, 2017
    • Jacopo's avatar
      Let's start labeling our CHANGELOG entries · eb2b895a
      Jacopo authored
      Added the type attribute to a CHANGELOG entry. When you create a new
      entry the software asks for the category of the change and sets the
      associated type in the file.
      eb2b895a
  12. Jun 23, 2017
  13. Mar 21, 2017
  14. Feb 06, 2017
  15. Jan 10, 2017
  16. Dec 09, 2016
  17. Dec 02, 2016
  18. Nov 29, 2016
  19. Nov 03, 2016
  20. Nov 02, 2016
  21. Oct 31, 2016
  22. Oct 21, 2016
    • Yorick Peterse's avatar
      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
      Unverified
      97731760
  23. Aug 12, 2016
  24. Jun 17, 2016
  25. Apr 28, 2016
    • Jacob Vosmaer (GitLab)'s avatar
      Use 'exec' in Unicorn and Sidekiq launch scripts · 8a6776ca
      Jacob Vosmaer (GitLab) 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.
      8a6776ca
  26. Apr 22, 2016
  27. Apr 14, 2016
    • Yorick Peterse's avatar
      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".
      Verified
      a54af831
  28. Jan 15, 2016
  29. Jan 14, 2016
  30. Dec 08, 2015
  31. Dec 03, 2015
  32. Nov 25, 2015
  33. Oct 05, 2015
  34. Sep 25, 2015
  35. Aug 27, 2015
    • Jacob Vosmaer (GitLab)'s avatar
      Properly daemonize the mail_room process · 1081a322
      Jacob Vosmaer (GitLab) 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.
      1081a322
  36. Aug 26, 2015
Loading