Issues
2 of 2
Kafka Producer puts all events on the same partition when using `donotpersist`
Fixed
Description
Acceptance / Success Criteria
None
Lucidchart Diagrams
Details
Assignee
Chandra GorantlaChandra GorantlaReporter
Alejandro GalueAlejandro GalueComponents
Sprint
NoneFix versions
Affects versions
Priority
Blocker
Details
Details
Assignee
Chandra Gorantla
Chandra GorantlaReporter
Alejandro Galue
Alejandro GalueComponents
Sprint
None
Fix versions
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created June 29, 2020 at 7:26 PM
Updated July 2, 2020 at 7:21 PM
Resolved June 30, 2020 at 5:14 PM
Activity
Show:
I've been helping a customer building one of their production environments, and they heavily rely on the Kafka Producer.
Without entering into details, OpenNMS is receiving Syslog and SNMP Traps from multiple devices via Minions installed on different data centers. The goal for the majority of the events is forward them to Kafka via the producer, but do not persist them to the database, to avoid making PostgreSQL a bottleneck on their environment.
Unfortunately, the logic uses the Event ID as the Partition Key when forwarding events, and that only works when the event is persisted in the database. When the event definition has
donotpersist
, OpenNMS can still process it, and the Kafka Producer will forward it as expected. The problem is that the Message Key will always be 0 in this case, meaning all the messages will end into the same partition, making it impossible to scale out the application.For this reason, we need to find something unique and use that as the Key. For alarms, we use the reduction-key, but unfortunately, there is no obvious field in terms of events.