Skip to content

Commit 274574c

Browse files
committed
docs(self-hosted): document python snuba consumer as a workaround for rust-consumer
1 parent 694d1eb commit 274574c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

develop-docs/self-hosted/troubleshooting.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ CSRF_TRUSTED_ORIGINS = ["https://sentry.example.com", "http://10.100.10.10", "ht
2323

2424
See [Django's documentation on CSRF](https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-CSRF_TRUSTED_ORIGINS) for further detail.
2525

26+
## Snuba
27+
28+
### No event showing on the dashboard
29+
30+
Snuba handles processing events (erros, transactions, etc) and moving them from Kafka to ClickHouse. Since version 24.3.0, we've migrated to using the new rust-snuba for most consumers. In some cases, the consumers may not correctly process events, therefore there is nothing seen on the dashboard UI. To tackle this, you can try to revert to the old Python consumers by replacing every occurrence of `rust-consumer` to just `consumer` on the `docker-compose.yml` file.
31+
32+
```bash
33+
sed -i 's/rust-consumer/consumer/g' docker-compose.yml
34+
```
35+
36+
After modifying the `docker-compose.yml` file, make sure to re-run `./install.sh` script.
37+
2638
## Kafka
2739

2840
One of the most likely things to cause issues is Kafka. The most commonly reported error is

0 commit comments

Comments
 (0)