commit | 51facf1b47b5f519ae37d4de11e45dcee4bad566 | [log] [tgz] |
---|---|---|
author | Luca Milanesio <luca.milanesio@gmail.com> | Tue Nov 09 23:54:11 2021 +0000 |
committer | Luca Milanesio <luca.milanesio@gmail.com> | Wed Nov 10 00:30:22 2021 +0000 |
tree | 8835113d7c83174cd00d0146edaf41c2cb3ea769 | |
parent | a1c8f369e52b6f316fdb1ed2975ce674c97785df [diff] |
Increase patience to 30s for shouldReplayAllEvents test The shouldReplayAllEvents test is flaky for slower CI agents that may take longer to deliver Kafka messages. Raise the patience to 30s making the test much more stable. Change-Id: I22f6937da1dfb6e479f6a3f8aa3e5d4a0a088617
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 laster.
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. 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 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
Assuming a running Kafka broker on the same Gerrit host, add the following settings to gerrit.config:
[plugin "events-kafka"] bootstrapServers = localhost:9092