Skip to content

Optimized blob view loading in repository

Denys Mishunov requested to merge 328220-optimized-blob-view into master

What does this MR do?

Optimizes the loading process for the textual blobs in the repository. This is especially important for the large blobs.

Briefly about what's going on here.

The mechanics here are trivial:

  1. We limit the number of lines we render on the screen to 70, no matter the blob size
  2. We render the remaining lines when the browser is idling

Does the line linking still work in this scenario?

Yes, it does

Screenshots or Screencasts (strongly suggested)

No visual changes in the blob rendering as all the lines visible to the user will be output at the same time in this MR.

The changes in the performance parameters:

Before (master) After (this MR)
Screenshot_2021-07-12_at_14.36.41 Screenshot_2021-07-12_at_14.36.47

The runtime parameters for both tests:

  • Local GDK
  • Production Build
  • Sitespeed: 17.8.0
  • Chrome 91.0.4472.77
  • 3 runs in both cases presenting the median

Most important changes:

With the same local env, the LCP dropped from 17.33s to 5.834s that give performance boost of about 🎉 66% for LCP 🎉 parameter without considering the differences in backEndTime (TTF essentially). Taking that into account gives even bigger difference between the tests

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Related to #328220 (closed)

Edited by Denys Mishunov

Merge request reports