1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Soak testing client
The soak testing clients should be run for prolonged periods
of time, typically 2+ weeks, to vet out any resource leaks, etc.
The soak testing client is made up of a producer, producing messages to
the configured topic, and a consumer, consuming the same messages back.
OpenTelemetry reporting supported through OTLP.
# Installation
1. Edit `ccloud.config`
2. Edit `otel-config.yaml`
3. the first time:
```bash
./bootstrap.sh <python-branch/tag> <librdkafka-branch/tag>
```
4. next times:
```bash
./build.sh <python-branch/tag> <librdkafka-branch/tag>
```
5.
```bash
. venv/bin/activate
5. Run some tests
```bash
TESTID=<testid> ./run.sh ccloud.config
```
|