]> juplo.de Git - website/blob
79b2c7ee953e3cf8bdfbab0dca7f75d987f6acd0
[website] /
1 ---
2 _edit_last: "2"
3 author: kai
4 categories:
5   - uncategorized
6 classic-editor-remember: classic-editor
7 date: "2021-05-16T14:56:45+00:00"
8 draft: "true"
9 guid: http://juplo.de/?p=1257
10 parent_post_id: null
11 post_id: "1257"
12 title: 'Implementing The Outbox-Pattern With Kafka - Part 2: Sending Messages From The Outbox'
13 url: /
14
15 ---
16 _This article is part of a Blog-Series_
17
18 Based on a [very simple example-project](/implementing-the-outbox-pattern-with-kafka-part-0-the-example/)
19 we will implemnt the [Outbox-Pattern](https://microservices.io/patterns/data/transactional-outbox.html) with [Kafka](https://kafka.apache.org/quickstart).
20
21 - [Part 0: The Example-Project](/implementing-the-outbox-pattern-with-kafka-part-0-the-example/ "Jump to the explanation of the example project")
22 - [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")
23 - Part 2: Sending Messages From The Outbox
24
25 ## TL;DR
26
27 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.