1. 17 5月, 2018 1 次提交
    • Y
      Limit the number of pipelines to count · 70985aa1
      Yorick Peterse 提交于
      When displaying the project pipelines dashboard we display a few tabs
      for different pipeline states. For every such tab we count the number of
      pipelines that belong to it. For large projects such as GitLab CE this
      means having to count over 80 000 rows, which can easily take between 70
      and 100 milliseconds per query.
      
      To improve this we apply a technique we already use for search results:
      we limit the number of rows to count. The current limit is 1000, which
      means that if more than 1000 rows are present for a state we will show
      "1000+" instead of the exact number. The SQL queries used for this
      perform much better than a regular COUNT, even when a project has a lot
      of pipelines.
      
      Prior to these changes we would end up running a query like this:
      
          SELECT COUNT(*)
          FROM ci_pipelines
          WHERE project_id = 13083
          AND status IN ('success', 'failed', 'canceled')
      
      This would produce a plan along the lines of the following:
      
          Aggregate  (cost=3147.55..3147.56 rows=1 width=8) (actual time=501.413..501.413 rows=1 loops=1)
            Buffers: shared hit=17116 read=861 dirtied=2
            ->  Index Only Scan using index_ci_pipelines_on_project_id_and_ref_and_status_and_id on ci_pipelines  (cost=0.56..2984.14 rows=65364 width=0) (actual time=0.095..490.263 rows=80388 loops=1)
                  Index Cond: (project_id = 13083)
                  Filter: ((status)::text = ANY ('{success,failed,canceled}'::text[]))
                  Rows Removed by Filter: 2894
                  Heap Fetches: 353
                  Buffers: shared hit=17116 read=861 dirtied=2
          Planning time: 1.409 ms
          Execution time: 501.519 ms
      
      Using the LIMIT count technique we instead run the following query:
      
          SELECT COUNT(*)
          FROM (
              SELECT 1
              FROM ci_pipelines
              WHERE project_id = 13083
              AND status IN ('success', 'failed', 'canceled')
              LIMIT 1001
          ) for_count
      
      This query produces the following plan:
      
          Aggregate  (cost=58.77..58.78 rows=1 width=8) (actual time=1.726..1.727 rows=1 loops=1)
            Buffers: shared hit=169 read=15
            ->  Limit  (cost=0.56..46.25 rows=1001 width=4) (actual time=0.164..1.570 rows=1001 loops=1)
                  Buffers: shared hit=169 read=15
                  ->  Index Only Scan using index_ci_pipelines_on_project_id_and_ref_and_status_and_id on ci_pipelines  (cost=0.56..2984.14 rows=65364 width=4) (actual time=0.162..1.426 rows=1001 loops=1)
                        Index Cond: (project_id = 13083)
                        Filter: ((status)::text = ANY ('{success,failed,canceled}'::text[]))
                        Rows Removed by Filter: 9
                        Heap Fetches: 10
                        Buffers: shared hit=169 read=15
          Planning time: 1.832 ms
          Execution time: 1.821 ms
      
      While this query still uses a Filter for the "status" field the number
      of rows that it may end up filtering (at most 1001) is small enough that
      an additional index does not appear to be necessary at this time.
      
      See https://gitlab.com/gitlab-org/gitlab-ce/issues/43132#note_68659234
      for more information.
      70985aa1
  2. 16 5月, 2018 2 次提交
  3. 14 5月, 2018 1 次提交
  4. 11 5月, 2018 1 次提交
  5. 07 5月, 2018 3 次提交
  6. 04 5月, 2018 4 次提交
    • B
      Reuses `InternalRedirect` when possible · 39916fdf
      Bob Van Landuyt 提交于
      `InternalRedirect` prevents Open redirect issues by only allowing
      redirection to paths on the same host.
      
      It cleans up any unwanted strings from the path that could point to
      another host (fe. //about.gitlab.com/hello). While preserving the
      querystring and fragment of the uri.
      
      It is already used by:
      
      - `TermsController`
      - `ContinueParams`
        - `ImportsController`
        - `ForksController`
      - `SessionsController`: Only for verifying the host in CE. EE allows
         redirecting to a different instance using Geo.
      39916fdf
    • B
      Enforces terms in the web application · 7684217d
      Bob Van Landuyt 提交于
      This enforces the terms in the web application. These cases are
      specced:
      
      - Logging in: When terms are enforced, and a user logs in that has not
        accepted the terms, they are presented with the screen. They get
        directed to their customized root path afterwards.
      - Signing up: After signing up, the first screen the user is presented
        with the screen to accept the terms. After they accept they are
        directed to the dashboard.
      - While a session is active:
        - For a GET: The user will be directed to the terms page first,
          after they accept the terms, they will be directed to the page
          they were going to
        - For any other request: They are directed to the terms, after they
          accept the terms, they are directed back to the page they came
          from to retry the request. Any information entered would be
          persisted in localstorage and available on the page.
      7684217d
    • B
      Allow a user to accept/decline terms · 10aa55a7
      Bob Van Landuyt 提交于
      When a user accepts, we store this in the agreements to keep track of
      which terms they accepted. We also update the flag on the user.
      10aa55a7
    • B
      Display terms to a user · 3629dc33
      Bob Van Landuyt 提交于
      When terms are present, they can be viewed on `/-/users/terms`.
      3629dc33
  7. 03 5月, 2018 2 次提交
  8. 02 5月, 2018 3 次提交
  9. 01 5月, 2018 1 次提交
  10. 25 4月, 2018 1 次提交
  11. 23 4月, 2018 3 次提交
  12. 22 4月, 2018 1 次提交
  13. 19 4月, 2018 2 次提交
  14. 14 4月, 2018 1 次提交
  15. 13 4月, 2018 1 次提交
  16. 11 4月, 2018 2 次提交
  17. 08 4月, 2018 1 次提交
  18. 07 4月, 2018 4 次提交
  19. 06 4月, 2018 3 次提交
    • J
      Add new repository archive route · 07f517d4
      James Ramsay 提交于
      Repository archives are always named `<project>-<ref>-<sha>` even if
      the ref is a commit. A consequence of always including the sha even
      for tags is that packaging a release is more difficult because both
      the ref and sha must be known by the packager.
      
      - add `<project>/-/archive/<ref>/<filename>.<format>` route using the
      `-` separator to prevent namespace collisions. If the filename is
      `<project>-<ref>` or the ref is a sha, the sha will be omitted,
      otherwise the default filename will be used.
      - deprecate previous archive route `repository/<ref>/archive`
      07f517d4
    • S
      Add confirmation modal to "Change username" · 43ef375e
      Shah El-Rahman 提交于
      43ef375e
    • S
      Fix HttpIO and spec · 2c6b90f0
      Shinya Maeda 提交于
      2c6b90f0
  20. 05 4月, 2018 3 次提交