Skip to main content
1 vote
0 answers
21 views

I have a Spring Boot / Java application following Domain-Driven Design and Event-Driven Architecture. In my domain service, I create a ReservationCreatedEvent (a domain event) and publish it: ...
Nur Sultan ASLAN's user avatar
Best practices
0 votes
1 replies
55 views

I have an EVDA system that each component communicate to each other using Kafka and Outbox Pattern. How to implement an automated E2E testing that I start producing an event from an upstream, then ...
Bhoomtawath Plinsut's user avatar
1 vote
1 answer
95 views

I’m building a Java microservice using Spring Boot 3.5.7, Kafka, and the Outbox Pattern. In my domain layer, I raise a domain event: package com.turkcell.reservation_service.domain.event; import com....
Nur Sultan ASLAN's user avatar
1 vote
2 answers
123 views

Summary: Postgres randomly switches index on a non uniformly distributed table, causing massive performance drop. We implemented the outbox pattern like so: A postgres database A golang worker to ...
Simon Watiau's user avatar
0 votes
0 answers
37 views

I'm attempting to develop an understanding of the Saga and Outbox patterns, and am working on development now. I'm using RabbitMQ and NestJS. I've got three services, Orders, Inventory, and Shipping. ...
JackG's user avatar
  • 73
0 votes
0 answers
185 views

I am trying to implement outbox pattern by reading inserts in a table from a MySQL and transforming them into events in RabbitMQ. My Outbox table contains: id uuid payload exchange routing_key ...
Victor Castaño Gutierrez's user avatar
0 votes
0 answers
229 views

I use AWS Lambda function to respond to HTTP requests. The function stores some data in a PostgreSQL database. To reliably notify interested parties of the changes, I use transactional outbox pattern. ...
iTollu's user avatar
  • 1,119
0 votes
0 answers
104 views

I am using the outbox pattern in MassTransit with Entity Framework and RabbitMq in my application. I found that if I just publish the message to the bus using IPublishEndpoint it will not be published ...
Luka's user avatar
  • 4,211
0 votes
0 answers
66 views

I tried to implement the transactional outbox pattern in my Spring Boot app. I'm using Azure CosmosDB for Mongo, which does not support transactions across collections. When I attempted to perform ...
testtt's user avatar
  • 11
0 votes
0 answers
75 views

I am trying to implement an outbox pattern with MassTransit. When rabbitmq is down, my producer project cannot access rabbit, so it adds the relevant message to the outboxstate and outboxmessage ...
sercanezelhan's user avatar
-1 votes
1 answer
141 views

I have many microservices and each have its own DbContext (one per microservice) and model. The db separation is by Schema in the same database. I want to use MassTransit Outbox pattern in all my ...
Luka's user avatar
  • 4,211
0 votes
1 answer
83 views

I'm doing a basic serialize / deserialize with $type included to implement the outbox pattern. however I'm getting the default values. Here's the code serializing : JsonConvert.SerializeObject(...
Sulabee's user avatar
  • 23
1 vote
2 answers
298 views

I wish to implement the transactional outbox pattern in a system that uses a database table as a transactional outbox in concert with Kafka in order to guarantee exactly-once delivery of my messages ...
filpa's user avatar
  • 3,744
0 votes
1 answer
146 views

I am using MassTransit Outbox feature. I often get exception like this EntityFramework.Exceptions.Common.ReferenceConstraintException: Reference constraint violation ---> Npgsql.PostgresException (...
user19291301's user avatar
0 votes
1 answer
182 views

I have a question I'm curious about. Let's say we are developing a microservice social media application (I chose this topic for practical purposes :)). I'm using the inbox-outbox pattern to ensure ...
OnurcanOgul's user avatar

15 30 50 per page
1
2 3 4 5