| commit | 6bc25fa98e82327dd2f1fd54ecb4af7bb9d6e93c | [log] [tgz] |
|---|---|---|
| author | Edwin Kempin <ekempin@google.com> | Thu Mar 25 12:39:03 2021 +0100 |
| committer | Edwin Kempin <ekempin@google.com> | Wed Mar 31 14:56:17 2021 +0200 |
| tree | e9805b4bd761e64a237acd5b6ab0b73f5f622a3d | |
| parent | 50350c19eaec106c5f45a487708d218b17338932 [diff] |
BatchUpdate: Cache ChangeData instances that are created for indexing When a change is updated it needs to be reindexed. For reindexing a change a ChangeData instance is created and the submit rules are executed. In the postUpdate step of BatchUpdate a ChangaData instance for the updated change is needed again to send a change-updated event. For the event the change is formatted as JSON which triggers the submit rules a second time. ChangeData already caches the result of running submit rules, this means if we can avoid that ChangeData is instantiated twice, we can avoid that the submit rules are executed twice. This is important since executing submit rules is rather expensive. To avoid instantiating ChangeData twice we now cache the ChangeData instances that were created for indexing and make them available to the postUpdate step via the context that is provided to the postUpdate step. With this change the postUpdate steps do not use the provided ChangeData instances yet, so that ChangeData is still instantiated a second time for sending the event. This will be addressed in a follow-up change. Signed-off-by: Edwin Kempin <ekempin@google.com> Change-Id: I415d745deb148ea12b1c1f4ed06cc695b7355d90
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 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 --recurse-submodules 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 8 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-centos8
To run a Ubuntu 20.04 based Gerrit image:
docker run -p 8080:8080 gerritcodereview/gerrit[:version]-ubuntu20
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.