Skip to content

Fix paginator of Environment Serializer

Shinya Maeda requested to merge fix-paginator-for-environment-serializer into master

What does this MR do?

Previously, we shipped an MR to optimize the Environment Serializer. In that MR, we added bunch of preloads to fix many N+1 problems, but there was a bug that pagination doesn't work correctly, which results in preloading for not only environments in the page, but also environments in the other pages.

This MR fixes the outstanding issue by processing paginator.paginate before batch_load runs.

Related #234055 (closed)

Screenshots (strongly suggested)

Grouped environments in the environment index page

2021-04-20_19-54

2021-04-20_19-55

List of environments in the grouped environment index page

2021-04-20_19-55_1

2021-04-20_19-56

We can see that preloading happens on the paginated environments.

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • 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
Edited by Shinya Maeda

Merge request reports