commit | 964384c88787a12ddd380bbed60a18c1abc6de22 | [log] [tgz] |
---|---|---|
author | Dave Borowitz <dborowitz@google.com> | Tue May 02 09:30:22 2017 -0400 |
committer | Dave Borowitz <dborowitz@google.com> | Thu May 04 09:48:36 2017 -0400 |
tree | f420ed59fdc4555f5af23035bb3439bb1b5e8e55 | |
parent | 876c467ec3a7bf9150b3008423a5c903e753a5c7 [diff] |
Properly fuse ref updates into ReceiveCommits's BatchUpdate Prior to this change, ReceiveCommits collected its own list of ReciveCommands for inserting and replacing patch sets, and executed them prior to ever creating a BatchUpdate. This means that when fusing all ref updates in a BatchUpdate into a single BatchRefUpdate, we still don't get atomicity between the code and NoteDb refs. This was a major oversight when writing the FusedNoteDbBatchUpdate implementation. This behavior in ReceiveCommits was a relic of the pre-BatchUpdate implementation. It was also more or less unavoidable when using an earlier incarnation of BatchUpdate, since there were some ref updates (pushing directly to refs) that weren't associated with a single Change, so we couldn't pick a Change.Id. Fortunately, we now have RepoOnlyOps. This is a perfect fit for the problem here: we can produce a 1-to-1 mapping between these extra ref updates and RepoOnlyOps. It turns out a good chunk of complexity in ReceiveCommits came from analyzing the patch set creation ref updates to see which ones succeeded before moving on to the BatchUpdate phase. Now, we can just throw all the ops into the BatchUpdate, and it will take care of only proceeding to updateRepo if the ref updates all succeeded. This also subsumes the corner case of pushing directly to refs/changes/N, which previously we had to run in a separate update. We still have separate BatchUpdates for %submit and for pushing to auto-close changes. But we've eliminated a lot of corner cases. Change-Id: I50d46e8fe7bf5c02cf5093ee2b93a4607c8316fa
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.