commit | d71f6c54df4658770cf372742ef2297eda8f2e8c | [log] [tgz] |
---|---|---|
author | Wyatt Allen <wyatta@google.com> | Thu May 04 10:01:52 2017 -0700 |
committer | Wyatt Allen <wyatta@google.com> | Thu May 04 10:26:08 2017 -0700 |
tree | b33857bc1d17ca574eb8869a26bbaab05e7389e8 | |
parent | e3dc6b2a72e40b282d9d410ed2d609b46d7416b0 [diff] |
Improved shared group decomposition Shared groups were broken down in I8018535ee7 to improve perceived performance using a diff of Go's go_spec.html as a benchmark. However, the total render time became slower with this change because the decomposed groups thrashed the layout. With this change, shared groups are decomposed into two groups to achieve the same perceived responsiveness, but balance that with total render time and avoid needless layouts. The Maximum group size in increased to 120 to further reduce the number of groups. Some performance numbers for the go_spec.html benchmark diff and the config_dump.json diff indicated in the linked issue. +------------------+--------------+ | config_dump.json | go_spec.html | +-----------------------+------------------+--------------+ | Content Render Before | 83877.2 ms | 7815.2 ms | +-----------------------+------------------+--------------+ | Content Render After | 17492.0 ms | 3363.4 ms | +-----------------------+------------------+--------------+ | Speedup Factor | ~4.8 | ~2.3 | +-----------------------+------------------+--------------+ Further performance improvements to follow. Bug: Issue 5778 Change-Id: I97751b7b78b821a794374cbfeecb16d59d5e1c4c
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Bazel and run the following:
git clone --recursive https://gerrit.googlesource.com/gerrit cd gerrit && bazel build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.