BigW Consortium Gitlab

  1. 10 Aug, 2017 1 commit
    • Use a specialized class for querying events · aac1de46
      Yorick Peterse authored
      This changes various controllers to use the new EventCollection class
      for retrieving events. This class uses a JOIN LATERAL query on
      PostgreSQL to retrieve queries in a more efficient way, while falling
      back to a simpler / less efficient query for MySQL.
      
      The EventCollection class also includes a limit on the number of events
      to display to prevent malicious users from cycling through all events,
      as doing so could put a lot of pressure on the database.
      
      JOIN LATERAL is only supported on PostgreSQL starting with version 9.3.0
      and as such this optimisation is only used when using PostgreSQL 9.3 or
      newer.
  2. 27 Jul, 2017 1 commit
  3. 26 Jun, 2017 1 commit
  4. 21 Jun, 2017 1 commit
  5. 16 Jun, 2017 1 commit
    • Add table for files in merge request diffs · 9a73b634
      Sean McGivern authored
      This adds an ID-less table containing one row per file, per merge request
      diff. It has a column for each attribute on Gitlab::Git::Diff that is serialised
      currently, with the advantage that we can easily query the attributes of this
      new table.
      
      It does not migrate existing data, so we have fallback code when the legacy
      st_diffs column is present instead. For a merge request diff to be valid, it
      should have at most one of:
      
      * Rows in this new table, with the correct merge_request_diff_id.
      * A non-NULL st_diffs column.
      
      It may have neither, if the diff is empty.
  6. 14 Jun, 2017 1 commit
  7. 11 Apr, 2017 1 commit
  8. 17 Mar, 2017 1 commit
    • Added Gitlab::Database.config · 9a20ff1c
      Yorick Peterse authored
      This returns the ActiveRecord configuration for the current environment.
      
      While CE doesn't use this very often, EE will use it in a few places for
      the database load balancing code. I'm adding this to CE so we don't end
      up with merge conflicts in this file.
  9. 23 Feb, 2017 4 commits
  10. 22 Feb, 2017 1 commit
    • Allow setting of a custom connection pool host · cf521c95
      Yorick Peterse authored
      This allows you to set a custom host when calling
      Gitlab::Database.create_connection_pool. This is necessary for load
      balancing as in this case we want to inherit all settings except for the
      hostname.
  11. 13 Feb, 2017 2 commits
  12. 06 Feb, 2017 1 commit
  13. 06 Jun, 2016 1 commit
  14. 15 Feb, 2016 1 commit
  15. 02 Feb, 2016 1 commit
  16. 09 Dec, 2015 1 commit
  17. 07 Oct, 2015 1 commit