Skip to content

Commit 4a02090

Browse files
authored
Split post process forwarders (#1759)
1 parent 65fa3d4 commit 4a02090

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ SYMBOLICATOR_IMAGE=getsentry/symbolicator:nightly
1212
WAL2JSON_VERSION=latest
1313
HEALTHCHECK_INTERVAL=30s
1414
HEALTHCHECK_TIMEOUT=60s
15-
HEALTHCHECK_RETRIES=5
15+
HEALTHCHECK_RETRIES=10

docker-compose.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,10 +319,14 @@ services:
319319
ingest-consumer:
320320
<<: *sentry_defaults
321321
command: run ingest-consumer --all-consumer-types
322-
post-process-forwarder:
322+
post-process-forwarder-errors:
323+
<<: *sentry_defaults
324+
# Increase `--commit-batch-size 1` below to deal with high-load environments.
325+
command: run post-process-forwarder --commit-batch-size 1 --entity errors
326+
327+
post-process-forwarder-transactions:
323328
<<: *sentry_defaults
324-
# Increase `--commit-batch-size 1` below to deal with high-load environments.
325-
command: run post-process-forwarder --commit-batch-size 1
329+
command: run post-process-forwarder --commit-batch-size 1 --entity transactions --commit-log-topic=snuba-transactions-commit-log --synchronize-commit-group transactions_group
326330
subscription-consumer-events:
327331
<<: *sentry_defaults
328332
command: run query-subscription-consumer --commit-batch-size 1 --topic events-subscription-results

0 commit comments

Comments
 (0)