Skip to content
Snippets Groups Projects
Commit ce4b7b78 authored by Cody Messick's avatar Cody Messick
Browse files

avro.py: First attempt at publishing avro packet to kafka topic

parent 9508798e
No related branches found
No related tags found
No related merge requests found
......@@ -92,9 +92,18 @@ def send(self, message):
"""Send an avro alert to a kafka broker
"""
# Create dictionary following avro schema
alert_dict = create_alert_dict(message)
stream = io.BytesIO()
fastavro.writer(stream, parsed_schema, alert_dict)
# TODO Actually send to a kafka broker
# Write avro packet to memory
avro_stream = io.BytesIO()
fastavro.writer(avro_stream, parsed_schema, alert_dict)
# Publish to Kafka producer
for producer in app.steps['consumer']:
# TODO Finalize topic(?)
producer.produce(
topic='StandinKafkaTopic',
value=avro_stream.getvalue(),
value_schema=parsed_schema
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment