commit | 1e9537265cbc3a0e6c9941fc1af20c5af9a70fe3 | [log] [tgz] |
---|---|---|
author | Ian Wienand <iwienand@redhat.com> | Mon Feb 22 14:59:44 2021 +1100 |
committer | Ian Wienand <iwienand@redhat.com> | Thu Mar 11 03:16:43 2021 +0000 |
tree | f5928cd3a692370d1f72db8ba25a71fa5e90328f | |
parent | 69d669f214ccf639e936348c6f794e3235bbea6a [diff] |
AccountPatchReview mariadb: fix key length Setting up the db on mariadb currently fails with com.google.gerrit.exceptions.StorageException: create failure on ACCOUNT_PATCH_REVIEWS at com.google.gerrit.server.schema.JdbcAccountPatchReviewStore.createTableIfNotExists(JdbcAccountPatchReviewStore.java:188) ... Caused by: java.sql.SQLSyntaxErrorException: (conn=13) Specified key was too long; max key length is 3072 bytes If35aff6c8d dealt with this for mysql, this just ports it to mariadb. Out of interest, I did a query on the file_name size on our production database. +---------------+---------------+---------------+----------------+ | pct_length_10 | pct_length_20 | pct_length_50 | pct_length_100 | +---------------+---------------+---------------+----------------+ | 2.14 | 15.96 | 77.80 | 99.48 | +---------------+---------------+---------------+----------------+ So 100 characters gets 99.48% of file names. Our longest filename is 249 characters apparently. We could probably optimize this with partial indexes if required. Change-Id: Ide9a8c647565d657d691a73be76129f237bf6ebb
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.