Skip to content
Snippets Groups Projects
  1. Jun 24, 2019
  2. Jun 17, 2019
  3. Jun 16, 2019
  4. Jun 14, 2019
  5. Jun 12, 2019
  6. Jun 08, 2019
  7. Jun 07, 2019
  8. Jun 06, 2019
  9. Jun 05, 2019
  10. Jun 03, 2019
    • Toon Claes's avatar
      Add activerecord-explain-analyze gem · be472673
      Toon Claes authored
      This gem allows you to get the `EXPLAIN ANALYZE` query plan, directly
      from the Rails console.
      
      The gem is installed with `require: false`, but if it was loaded on
      launch, this would be it's memory load:
      
      ```
      TOP: 145.3086 MiB
        rails/all: 22.4844 MiB
        ...
        activerecord-explain-analyze: 2.9648 MiB
          active_record/connection_adapters/postgresql_adapter: 2.9648 MiB
            pg: 2.9648 MiB
              pg_ext: 2.9648 MiB
        ...
      ```
      be472673
  11. May 29, 2019
    • Jan Provaznik's avatar
      Added rack-timeout for Puma · 6d6bae66
      Jan Provaznik authored and Mayra Cabrera's avatar Mayra Cabrera committed
      It assures that requests are aborted after 60 seconds, otherwise
      an exception is raised. This exception is logged by Sentry, also
      there is a Prometheus counter for measuring number of requests in each
      state.
      6d6bae66
  12. May 27, 2019
  13. May 24, 2019
  14. May 22, 2019
  15. May 21, 2019
  16. May 20, 2019
  17. May 16, 2019
  18. May 07, 2019
  19. May 06, 2019
  20. May 05, 2019
  21. May 02, 2019
    • Luke Duncalfe's avatar
      Add support for two-step Gitaly Rebase RPC · 49cb4b3d
      Luke Duncalfe authored and Douwe Maan's avatar Douwe Maan committed
      The new two-step Gitaly `Rebase` RPC yields the rebase commit SHA to the
      client before proceeding with the rebase.
      
      This avoids an issue where the rebase commit SHA was returned when the
      RPC had fully completed, and in some cases this would be after the Rails
      `post_receive` worker services had already run. In these situations,
      the merge request did not yet have its rebase_commit_sha attribute set
      introducing the possibility for bugs (such as previous approvals being
      reset).
      
      https://gitlab.com/gitlab-org/gitlab-ee/issues/5966
      49cb4b3d
    • Jan Provaznik's avatar
      Add opentracing integration for graphql · 96750fac
      Jan Provaznik authored and Bob Van Landuyt :neckbeard:'s avatar Bob Van Landuyt :neckbeard: committed
      Extends existing graphql's tracer with opentracing measurements. Because
      it also adds Tracing::Graphql class (for opentracing), it also renames
      Graphql::Tracing class to Graphql::GenericTracing to minimize confusion
      with similar class names.
      96750fac
  22. Apr 30, 2019
  23. Apr 29, 2019
  24. Apr 27, 2019
  25. Apr 26, 2019
  26. Apr 25, 2019
    • Francisco Javier López's avatar
      Added list_pages method to avoid loading all wiki pages content · dde69bfb
      Francisco Javier López authored
      Inside a wiki, when we show the sidebar or browse to the `pages`,
      all page contents are retrieved from Gitaly and that is a waste
      of resources, since no content from that pages are going to be
      showed.
      
      This MR introduces the method `ProjectWiki#list_pages`,
      which uses new wiki_list_pages RPC call to retrieve
      pages without content
      
      Also in the `WikisController` we're using the method to show
      pages in the sidebar and also on the `pages` page.
      dde69bfb
  27. Apr 23, 2019
  28. Apr 22, 2019
Loading