-
Hi Gora,
Does this implement https://microservices.io/patterns/data/transactional-outbox.html?
Thanks.
-
# Idempotent Processing with Kafka | Nejc Korasa
Duplicate Messages are Inevitable Understanding the Intricacies of exactly-once semantics in Kafka Achieving Idempotent Processing with Kafka Idempote…
-
@jbogard I'm hoping this is the right forum for this question? It is related to the code in this repo but do tell me if it isn't.
Some background.
I use the outbox pattern (from [eshop](https:/…
-
For reliable domain event emission synchronized with database transactions, the [transactional outbox pattern](https://microservices.io/patterns/data/transactional-outbox.html) is a common solution. I…
-
https://github.com/abpframework/abp/pull/10008 adds inbox & outbox patterns to the distributed event bus. However, it doesn't support multi-tenancy with a tenant has a dedicated database. We don't sup…
-
Chris Casano (chriscasano) commented:
When using the Outbox Pattern with CockroachDB, one issue is cleaning up the outbox table once records have been sent to the proper sink. Otherwise, app develo…
-
I am currently evaluating frameworks for realizing the transactional outbox pattern in a quarkus context. Thus the question, whether quarkus support is generally planned or possible here?
-
I'm look at Topos because of message ordering is important in my project, I wonder if Topos is supported outbox pattern like Rebus
-
Jooq is used mainly in our application. Additionally we use the oubox package which uses eintityManager.
An interesting thing happens when we want to test our solution for the oubox-pattern.
The t…
-
In #12 (and in the original instructions of the challenge) there's a requirement to update the inventory when an order is placed.
The initial, naïve implementation is to trigger an async operation …