commit | c94f2c5e92516f50a2ff2294263808366e8b88bb | [log] [tgz] |
---|---|---|
author | David Ostrovsky <david@ostrovsky.org> | Fri Jul 01 08:20:44 2022 +0200 |
committer | David Ostrovsky <david@ostrovsky.org> | Fri Jul 01 08:21:20 2022 +0200 |
tree | 751bfdf9cfb88a2fcb1575d312cb4f8a1c362e16 | |
parent | 2e3c4a047efd054139d0191567e7fa683fc2713b [diff] |
Adapt to adding support to store protos in indexes In Ieadcb3b097 support to store protos in indexes was added in gerrit core. Adapt the code correspondingly. Similarly to Lucene backend, ES currently doesn't support storing of protos in index backend. Change-Id: Ifd91ed4ee5a4a36817a3ccb152dba9fb0e8d2fd6
Indexing backend libModule for Gerrit Code Review based on ElasticSearch.
This module was original part of Gerrit core and then extracted into a separate component from v3.5.0-rc3 as part of Change-Id: Ib7b5167ce.
This libModule is built like a Gerrit in-tree plugin, using Bazelisk. See the build instructions for more details.
Install the index-elasticsearch.jar into the $GERRIT_SITE/lib
directory.
Add the index-elasticsearch module to $GERRIT_SITE/etc/gerrit.config
as follows:
[gerrit] installIndexModule = com.google.gerrit.elasticsearch.ElasticIndexModule
When installing the module on Gerrit replicas, use following example:
[gerrit] installIndexModule = com.google.gerrit.elasticsearch.ReplicaElasticIndexModule
For further information and supported options, refer to config documentation.
Gerrit acceptance tests allow the execution with an alternate implementation of the indexing backend using the GERRIT_INDEX_MODULE
environment variable.
bazel test --test_env=GERRIT_INDEX_MODULE=com.google.gerrit.elasticsearch.ElasticIndexModule //...