commit | 662887a0b9a9fda91e559a7cbc6d549f66973def | [log] [tgz] |
---|---|---|
author | Luca Milanesio <luca.milanesio@gmail.com> | Tue Jan 30 21:40:39 2024 +0000 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Tue Jan 30 21:40:39 2024 +0000 |
tree | b04e61ba94439f503350871d2276ef9b58145480 | |
parent | b4ddbd4c02d004f1dc2d713b6b1d75c839bdc11a [diff] | |
parent | 60781dd20d76a25c0ba8cf247c9b7e1cffc37b74 [diff] |
Merge branch 'stable-3.8' into stable-3.9 * stable-3.8: Bump kafka-clients to v2.3.1 Change-Id: I04f83ad166d805a2b60ff5c1b9a89204253dcc97
This plugins allows to define a distributed stream of events published by Gerrit.
Events can be anything, from the traditional stream events to the Gerrit metrics.
This plugin requires Gerrit 2.13 or later.
linux
java-1.8
Bazel
Kafka plugin can be build as a regular ‘in-tree’ plugin. That means that is required to clone a Gerrit source tree first and then to have the Kafka plugin source directory into the /plugins path. The plugin depends on events-broker which is linked directly from source with the same ‘in-tree’ plugin structure.
Additionally, the plugins/external_plugin_deps.bzl file needs to be updated to match the Kafka plugin one.
git clone --recursive https://gerrit.googlesource.com/gerrit git clone https://gerrit.googlesource.com/plugins/events-kafka gerrit/plugins/events-kafka git clone https://gerrit.googlesource.com/modules/events-broker gerrit/plugins/events-broker cd gerrit rm plugins/external_plugin_deps.bzl ln -s ./events-kafka/external_plugin_deps.bzl plugins/.
To build the events-kafka plugins, issue the command from the Gerrit source path:
bazel build plugins/events-kafka
The output is created in
bazel-genfiles/plugins/events-kafka/events-kafka.jar bazel-genfiles/plugins/events-broker/events-broker.jar
Assuming a running Kafka broker on the same Gerrit host, add the following settings to gerrit.config:
[plugin "events-kafka"] bootstrapServers = localhost:9092