Skip to content
Snippets Groups Projects
  1. Nov 10, 2016
    • awhildy's avatar
      [ci skip] Establish basic structure for ux_guide README.md · 11510bf7
      awhildy authored
      Block out pages needed for ux_guide
      
      Add resources stub to ux_guide home
      
      Fill out principles and basics
      
      Add TOC to basics
      
      Move all of UI guide to new UX guide structure
      
      Add first level structure on ux-guide pages
      
      Add more details to buttons
      
      Add button images. Update link on development
      
      Renamed surfaces to templates. Add tooltip details
      
      Update typography and icons on Basics page
      
      Add images for color. First draft of voice and tone
      
      Delete findings page
      
      Refine pages. Fill out Surfaces pages
      
      Clean up layout on basics, surfaces, features. Add anchorlinks and counts to components
      
      Fill out components page
      
      Add item title and system info block
      
      Fill out Features page
      
      Switch tooltip placement image
      11510bf7
  2. Oct 31, 2016
  3. 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
  4. Oct 13, 2016
  5. Sep 22, 2016
  6. Aug 22, 2016
    • Yorick Peterse's avatar
      Added performance guidelines for new MRs · e4e03d94
      Yorick Peterse authored
      These guidelines cover the performance requirement for newly submitted
      merge requests. These guidelines are put in to place to prevent merge
      requests from negatively impacting GitLab performance as much as
      possible.
      Verified
      e4e03d94
  7. Aug 11, 2016
  8. Aug 10, 2016
  9. Aug 08, 2016
  10. Aug 04, 2016
  11. Jun 06, 2016
  12. Apr 30, 2016
  13. Apr 10, 2016
  14. Apr 06, 2016
  15. Apr 02, 2016
  16. Mar 10, 2016
  17. Mar 08, 2016
  18. Feb 17, 2016
  19. Oct 05, 2015
  20. May 18, 2015
  21. May 11, 2015
  22. Mar 08, 2015
  23. Dec 01, 2014
  24. Sep 18, 2014
  25. Jun 03, 2014
  26. Apr 24, 2014
  27. Mar 27, 2014
Loading