Skip to content

Gitaly: Exclude RepositorySize from appdex

John Cai requested to merge jc-exclude-repository-size-from-gitaly-appdex into master

Gitaly: Exclude RepositorySize from appdex

RepositorySize is changing the way it calculates size. It will now use git-rev-list(1) instead of doing a du -sk. gitlab-org/gitaly!4430 (merged)

This RPC will not have a similar performance profile as RepackFull, as it will do a full Git object database walk.

This RPC is also only called by background workers in Rails, so it makes sense to not include its latency in the appdex calculation.

Changelog: changed

Merge request reports