commit | c281954486877218feddfbb6d37bec09d2a116aa | [log] [tgz] |
---|---|---|
author | Martin Fick <mfick@codeaurora.org> | Tue Oct 29 18:06:21 2019 -0600 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Oct 30 00:06:21 2019 +0000 |
tree | 875c778bc9a346a6ba41a2cd043c8a8fc5115435 | |
parent | 9448404bfca6e06e6029249cf7c2ab54e9cc28d8 [diff] |
Update git submodules * Update plugins/replication from branch 'master' to 4786c07027a0040810ae3e6a517f737cb57e1283 - Prune non-waiting tasks from queue during distribution Make the replication distributor also prune the tasks which have been removed from the persistent waiting directory but that are still in the queue. Since these tasks are not in the waiting directory, they will not run once they could run anyway. Cleaning these tasks up gives a more accurate picture of the replication work still needing to be done. Presumably these tasks have been removed externally by another actor (likely because they completed on another master in the cluster). This keeps the scheduled and waiting lists approximately synchronized across all the nodes in a multi-master cluster. Change-Id: If99ed75041fa07632fdc0f23473dad4d8942a3e1 - Add a replication distributor The distributor schedules everything from the persistent waiting list every replication.distributionInterval so that replication can act on externally written tasks (likely by other nodes in the cluster). The interval defaults to 0, off. Change-Id: I8d7799b3a6f3f5362561fc593e52628ec2de51d4
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 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.