]> juplo.de Git - website/blob
12f273ed02890fd4bf8db76c0a95ab2006be0465
[website] /
1 ---
2 _edit_last: "2"
3 categories:
4   - uncategorized
5 classic-editor-remember: classic-editor
6 date: "2021-05-16T14:56:45+00:00"
7 draft: "true"
8 guid: http://juplo.de/?p=1257
9 parent_post_id: null
10 post_id: "1257"
11 title: 'Implementing The Outbox-Pattern With Kafka - Part 2: Sending Messages From The Outbox'
12 url: /
13
14 ---
15 _This article is part of a Blog-Series_
16
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).
19
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
23
24 ## TL;DR
25
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.