Skip to content

Commit

Permalink
ref: Remove default mapping of "transaction" topic to "events" (#3250)
Browse files Browse the repository at this point in the history
Should be (roughly) synchronized with getsentry/sentry#39988 which will send events to the new topic.

This would only affect self hosted and dev users who are using the Kafka backend. All Sentry prod environments have already been migrated via other methods to ensure zero downtime during the transition.
  • Loading branch information
lynnagara authored Oct 13, 2022
1 parent 101e866 commit 6067fc8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions snuba/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,7 @@ class RedisClusters(TypedDict):
}

# Mapping of default Kafka topic name to custom names
KAFKA_TOPIC_MAP: Mapping[str, str] = {
# TODO: Remove once we are done splitting transactions from the shared events topic
"transactions": "events",
"snuba-transactions-commit-log": "snuba-commit-log",
}
KAFKA_TOPIC_MAP: Mapping[str, str] = {}

# Mapping of default Kafka topic name to broker config
KAFKA_BROKER_CONFIG: Mapping[str, Mapping[str, Any]] = {}
Expand Down

0 comments on commit 6067fc8

Please sign in to comment.