1. 18 5月, 2018 19 次提交
  2. 17 5月, 2018 21 次提交
    • R
      Merge branch '6020-extract-ee-specific-controller-lines' into 'master' · 47555ef8
      Robert Speicher 提交于
      [CE]  Resolve "Extract EE specific files/lines for some controllers"
      
      See merge request gitlab-org/gitlab-ce!18994
      47555ef8
    • D
      Fix group lists visual · 88fa0ecd
      Dmitriy Zaporozhets 提交于
      * Reset p bottom margin for group lists to fix vertical alignment
      * Remove double border for group lists to be consistent with project
      lists
      Signed-off-by: NDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
      88fa0ecd
    • G
      Merge branch 'pipelines-index-performance' into 'master' · 4583e67c
      Grzegorz Bizon 提交于
      Improve performance of Projects::PipelinesController#index
      
      See merge request gitlab-org/gitlab-ce!18427
      4583e67c
    • F
      Merge branch 'master' into 46381-dropdown-mr-widget · 49673de3
      Filipa Lacerda 提交于
      * master: (40 commits)
        Add changelog
        Update quick_start_guide.md
        Resolve "Opening Project with invite but without accepting leads to 404 error page"
        Respect the inheritance chain between Ci::Build and CommitStatus
        Remove unneccessary imports
        fixed copy to cliboard button in embedded snippets
        Fix Error 500 viewing admin page due to statement timeouts
        Grant privileges after database is created
        Only setup db in the first checkout!
        Project Sidebar: Split CI/CD into CI/CD and Operations
        Fix GPM content types for Doorkeeper
        Workhorse to send raw diff and patch for commits
        Refactor out duplication in runner_policy.rb
        Remove unnecessary runner.is_shared? checks in api because they are handled by policy
        Allow admin to assign shared runner to project through API
        Change policy list_runner_jobs -> read_runner
        Rename User#ci_authorized_runners -> ci_owned_runners
        Improve efficiency of authorized_runner policy query
        Use can? policies for lib/api/runners.rb
        Allow group runners to be viewed/edited in API
        ...
      49673de3
    • G
      Merge branch '46177-fix-present-on-generic-commit-status' into 'master' · d9b78477
      Grzegorz Bizon 提交于
      Resolve "NoMethodError: undefined method `present' for #<GenericCommitStatus:0x00007f6eacf34a40>"
      
      Closes #46177
      
      See merge request gitlab-org/gitlab-ce!18979
      d9b78477
    • A
      Merge branch... · 2eb8099f
      Achilleas Pipinellis 提交于
      Merge branch 'docs/46042-document-that-project-templates-can-be-used-with-auto-devops' into 'master'
      
      Resolve "Document that Project Templates can be used with Auto DevOps"
      
      Closes #46042
      
      See merge request gitlab-org/gitlab-ce!19009
      2eb8099f
    • M
      Add changelog · 22d3e90c
      Mayra Cabrera 提交于
      22d3e90c
    • F
      Update quick_start_guide.md · 143a98a3
      Fabio Busatto 提交于
      143a98a3
    • Y
      Added changelog for pipelines page performance · da7bbef8
      Yorick Peterse 提交于
      da7bbef8
    • Y
      Exclude coverage data from the pipelines page · 878ca2e6
      Yorick Peterse 提交于
      When displaying a project's pipelines
      (Projects::PipelinesController#index) we now exclude the coverage data.
      This data was not used by the frontend, yet getting it would require one
      SQL query per pipeline. These queries in turn could be quite expensive
      on GitLab.com.
      878ca2e6
    • Y
      Preload pipeline data for project pipelines · 19428e80
      Yorick Peterse 提交于
      When displaying the pipelines of a project we now preload the following
      data:
      
      1. Authors of the commits that belong to these pipelines
      2. The number of warnings per pipeline, which is used by
         Ci::Pipeline#has_warnings?
      
      == Commit Authors
      
      Previously this data was queried for every Commit separately, leading to
      20 SQL queries being executed in the worst case. With an average of 3 to
      5 milliseconds per SQL query this could result in 100 milliseconds being
      spent in _just_ getting Commit authors.
      
      To preload this data Commit#author now uses BatchLoader (through
      Commit#lazy_author), and a separate module
      Gitlab::Ci::Pipeline::Preloader is used to ensure all authors are loaded
      before they are used.
      
      == Number of warnings
      
      This changes Ci::Pipeline#has_warnings? so it supports preloading of the
      number of warnings per pipeline. This removes the need for executing a
      COUNT(*) query for every pipeline just to see if it has any warnings or
      not.
      19428e80
    • 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
    • F
      Fix eslint · 9e61d26c
      Filipa Lacerda 提交于
      9e61d26c
    • F
      Moves string to a constant · 1bf74bfd
      Filipa Lacerda 提交于
      1bf74bfd
    • D
      Merge branch '42531-open-invite-404' into 'master' · ec7163ae
      Douwe Maan 提交于
      Resolve "Opening Project with invite but without accepting leads to 404 error page"
      
      Closes #42531
      
      See merge request gitlab-org/gitlab-ce!17634
      ec7163ae
    • D
      Merge branch 'ce-5980-add-ce-upgrade-ee-test' into 'master' · bbd8d5b2
      Douwe Maan 提交于
      CE: Add jobs to verify that migrating from CE to EE works
      
      See merge request gitlab-org/gitlab-ce!18909
      bbd8d5b2
    • G
      Merge branch 'zj-workhorse-commit-patch-diff' into 'master' · 48877dfc
      Grzegorz Bizon 提交于
      Workhorse to send raw diff and patch for commits
      
      Closes gitaly#1196
      
      See merge request gitlab-org/gitlab-ce!18974
      48877dfc
    • P
      Merge branch 'remove-css-imports' into 'master' · 2f7e0aba
      Phil Hughes 提交于
      Remove unneccessary imports
      
      See merge request gitlab-org/gitlab-ce!18993
      2f7e0aba
    • P
      Merge branch 'jivl-add-dot-system-notes' into 'master' · e5289643
      Phil Hughes 提交于
      Add dot to separate system notes content
      
      Closes #45676
      
      See merge request gitlab-org/gitlab-ce!18864
      e5289643
    • M
      Respect the inheritance chain between Ci::Build and CommitStatus · f494f271
      Mayra Cabrera 提交于
      Also moves the assertions were they belong
      f494f271