5 classic-editor-remember: classic-editor
6 date: "2021-05-16T14:56:45+00:00"
8 guid: http://juplo.de/?p=1257
11 title: 'Implementing The Outbox-Pattern With Kafka - Part 2: Sending Messages From The Outbox'
15 _This article is part of a Blog-Series_
17 Based on a [very simple example-project](/implementing-the-outbox-pattern-with-kafka-part-0-the-example/)
18 we will implemnt the [Outbox-Pattern](https://microservices.io/patterns/data/transactional-outbox.html) with [Kafka](https://kafka.apache.org/quickstart).
20 - [Part 0: The Example-Project](/implementing-the-outbox-pattern-with-kafka-part-0-the-example/ "Jump to the explanation of the example project")
21 - [Part 1: Writing In The Outbox-Table](/implementing-the-outbox-pattern-with-kafka-part-1-the-outbox-table/ "Jump to the explanation what has to be added, to enqueue messages in an outbox for successfully written transactions")
22 - Part 2: Sending Messages From The Outbox
26 In this part, we will add a first simple version of the logic, that is needed to poll the outbox-table and send the found entries as messages into a Apache Kafka topic.