commit | 3bce568591e5a1e705fb65b75b88280b915efb96 | [log] [tgz] |
---|---|---|
author | Luca Milanesio <luca.milanesio@gmail.com> | Thu Nov 03 19:41:01 2022 +0000 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Mon Nov 07 17:12:32 2022 +0000 |
tree | 393ea09bbd4e434cf7f86726627c60654e41f1cf | |
parent | cbf312f854e38f963ab0dc2fb3f2e62c6e9e3975 [diff] |
Introduce a PassthroughLoadingCache for disabled caches Gerrit documentation states that when the memoryLimit of a cache is zero then it is disabled. However, the code told a different story because there was always a Guava/Caffeine cache created with a potential impact on performance due to the inherent locking of the underlying ConcurrentHashMap. The ConcurrentHashMap would always lock additions and removals on the same key, and the only way to avoid locking is to avoid the instantiation of the ConcurrentHashMap. Why should someone want to ever disable a cache? Disabling the cache typically isn't a good idea, however, there could be situations where: 1. The rate of the access of the cached value for K is low and the load time is high 2. The rate of the eviction of the cached value for K is high The Issue 16379 is one example of the above condition, however, there are more instances of the same problem. The eviction done at 2. for K would then cause all the incoming threads to wait until the load at 1. for K is done. Introduce a simple LoadingCache implementation called PassthroughLoadingCache that is *really* just delegating the calls to the underlying loader without involving any caching or locking. This change also makes the memoryLimit behaviour consistent with the diskLimit set to zero means disabling the implementation of the cache. Bug: Issue 16379 Release-Notes: Increase overall performance of disabled caches by avoiding any locking due to Guava/Caffeine caches with zero weight. Change-Id: I5906a1f250014d96aaadcda0f64a37a78030d047
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.