Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
26 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
1 vote
2 answers
75 views

I'm working on an event-driven system using AWS SQS and facing a design decision when sending commands between services. The command triggers an operation in the receiving service, and that operation ...
Jeremwhy's user avatar
-1 votes
1 answer
46 views

This is my code : @retry(stop=stop_after_attempt(3), wait=wait_fixed(2)) def kafka_consumer(self): """Consume messages from Kafka with retry logic.""" ...
Faizan Ansari's user avatar
0 votes
2 answers
152 views

I'm working with Azure Event Grid to receive incoming events from an external publisher. When files are uploaded to a blob container named "snlf", I want my Service Bus trigger Function App ...
Still_Learning's user avatar
1 vote
1 answer
50 views

I'm building a piece of software responsible for processing different types of events from my system. This component is hosted as an Azure Function App, triggered by an Azure Storage Queue. The ...
j.arap's user avatar
  • 115
0 votes
1 answer
166 views

I have subscribed to a Google pub/sub topic from my spring boot application with subscription.What happens if my service is down and There is some data which is pushed to pub/sub topic. Will i receive ...
qwerty's user avatar
  • 23
0 votes
0 answers
73 views

I'm implementing a restaurant management micro-service using CQRS pattern. The read and write databases are separated and eventually become consistent by async events using an event bus. Now I want to ...
Farid Fereidooni's user avatar
-1 votes
1 answer
70 views

need help i am implementing CQRS using i would like to know which method i should choose when it comes to message delivery guarantees which one is suitable for CQRS if i choose at least one i will ...
ayoub razali's user avatar
2 votes
1 answer
458 views

In a microservice architecture, each service typically manages its own database and executes operations independently. However, when dealing with business processes that span multiple microservices, ...
Dustin Lee's user avatar
0 votes
1 answer
60 views

Looking for an answer from a senior architect in Flutter who knows the in and out of the SDK and the platform. Objective is to get notified once a Stateful object comes to life or gets instantiated. ...
AppDeveloper's user avatar
  • 2,180
0 votes
1 answer
204 views

I have read a number of articles describing how websockets and pub sub architectures work at a high level. I get that with websockets a connection is persisted between a client and a server to send ...
Drew Gallagher's user avatar
0 votes
1 answer
152 views

Let's say we are building an application where the user has a dashboard populated with data from multiple services. For example: On the dashboard, Display pending notifications to be read, fed by ...
Chida J's user avatar
1 vote
1 answer
684 views

Consider there are 3 microservices - s1, s2 and s3. s1 sends message m1. s2 consumes message m1, applies some business logic and then sends message m2. The problem is that s3 receives message m2 ...
Yash's user avatar
  • 27
1 vote
1 answer
147 views

Lets imagine we have several bounded contexts and they are all decoupled using messaging services (queues, message buses). Some business process, lets say Order processing spans multiple bounded ...
tlt's user avatar
  • 15.5k
1 vote
1 answer
57 views

In an event driven architecture using choreogeaphy model, how do we keep current, global state of the process? Lets say we have a process where many services p1,...,pn transition many states s1,...,...
tlt's user avatar
  • 15.5k
0 votes
1 answer
67 views

If I am using a queue (SQS or RabbitMQ) to communicate events between micro-services then does it not conform to the requirements of event driven architecture? as, I am not using a durable (log based) ...
ananda's user avatar
  • 359
0 votes
2 answers
104 views

I've built my CQRS project Core-API, where i have declared events, and commands, also the AxonConfig (just some xStream allowtypesByWildcard) Till this point, everythings works fine I created the ...
Mohamed Ouksili's user avatar
0 votes
2 answers
82 views

I have a architectural problem at work, There are records coming into a SNS FIFO topic, each record coming in needs to be processed by 3 different modules in a sequential manner. For sake of ...
iamprerit's user avatar
1 vote
1 answer
100 views

I have a Voucher Service which listens to incoming sales, and updates vouchers based on what has been purchased/returned etc. So we consume a SaleCompletedEvent, which may put vouchers into a '...
FBryant87's user avatar
  • 4,638
0 votes
0 answers
86 views

I'm working on handling events coming from eventstoredb using spark put actually couldn't find a straightforward way to connect between them with pyspark. What I aim to do is to read events as stream ...
waseemoo1's user avatar
1 vote
0 answers
111 views

I am running my kafka consumer (from the confluent_kafka library) in a separate django management command. (I did this because I couldn't find a way of running a kafka consumer within the runserver ...
spaceman's user avatar
0 votes
2 answers
690 views

I'm designing a system solution where an SQS queue triggers a Lambda, the queue receives a lot of messages for a logical grouping say an execId. The lambda reads the messages from the queue in a batch ...
harixtha's user avatar
0 votes
0 answers
199 views

We have an application A which has its own domain model and database (SQLSERVER). Another application B has its own domain model and database. We want to create another application C which is to ...
Lee patrick's user avatar
0 votes
0 answers
140 views

To understand the issue I provide a simplified diagram of my system: Let's see the Business service allows you to create an account. It generates 1. Business event. The event is processed by the ...
szczepaniakdominik's user avatar
0 votes
1 answer
1k views

I'm investigating the use of event bridge as we are currently using Kafka and we want to confirm it's the best fit for us. However, I haven't used event bridge before and I'm a little confused with ...
djnz's user avatar
  • 119
0 votes
1 answer
170 views

I have a QM model that has been created using QM Version 5.1.1. Now, when I attempt to open it using QM Version 5.2.5, the following error arises. If it is not possible to open QM Modeled with older ...
Arian's user avatar
  • 129
0 votes
1 answer
285 views

I'm really interested in using Redis Streams as the messaging backbone for a platform utilising event driven architecture in place of Kafka for the following reasons: Lower cost Drastically lower ...
Daisy Day's user avatar
  • 688
0 votes
0 answers
380 views

I am implementing a business process that performs 6 steps e.g. The Service Orchestrator consumes an event from an SNS (or Standard Publish-Subscribe service) Topic Using the message consumed from ...
Mega's user avatar
  • 1,364
0 votes
1 answer
119 views

Let's say I have an Order and a Product. Whenever product is created I publish PRODUCT_CREATE event and for the order it is ORDER_CREATE If I use Kafka ( or any message broker ) should I have 1 queue ...
0xDjole's user avatar
  • 25
2 votes
2 answers
3k views

Let's say there's a service called "CreateOrder". Let's say as well that the service depends on "Inventory" service to check whether the items in the order are available, and also &...
Mycotina's user avatar
  • 551
1 vote
2 answers
616 views

In microservices architecture, you can follow an event driven architecture where you want to publish events, doubt it’s about size of the payload. What is a reasonable amount of data to be there? You ...
X.Otano's user avatar
  • 2,189
0 votes
1 answer
466 views

I have a distributed platform which allows customers to make purchases, and the items which are purchased are stored in an inventory: Sales app -> PurchaseEvent -> Inventory app The Sales app ...
FBryant87's user avatar
  • 4,638
1 vote
0 answers
1k views

I would like to create an event driven architecture in Django. Every time a database record is created, updated or deleted, i would like to create and event, posting it to a queue ( like kafka, sqs, ...
p.magalhaes's user avatar
  • 8,446
1 vote
1 answer
502 views

Recently I was given a situation: Events are being published to 1 Topic Given we have 1 consumer in 1 consumer group. In order to keep the pace of produced message and consumeed message we have ...
Sharad's user avatar
  • 435
1 vote
1 answer
336 views

I'm quite new to DDD and Event Driven architectures. And after searching this issue I did not manage to get a clear answer by myself, so I'll appreciate if someone can clarify this. Suppose I ...
Guille López's user avatar
3 votes
1 answer
373 views

I am thinking if there could be an easy way to guarantee eventual consistency in an event driven modular monolith, which is utilising an in process message bus instead of an actual external message ...
Antonis S's user avatar
  • 773
1 vote
1 answer
120 views

In the effort to redesign an asynchronous flow based functional service to an event driven one, we have come up with changes on different part of this system. The service receives various statuses ...
vvra's user avatar
  • 2,932
0 votes
1 answer
774 views

Which one is better between (1) having event consumer(e.g. KafkaListener) in server application of a microservice (2) having another application only for consuming the events and calling API of the ...
Sean Hwang's user avatar
1 vote
1 answer
1k views

I would like to know about how the consumers in the same consumer group read the messages from one topic which has only one partition. For example, I have 3 consumers in one consumer group and that ...
K Bariya's user avatar
1 vote
1 answer
512 views

I am trying to architect an event streaming system to replace our existing database table polling mechanism. We currently have a process where Application ABC will query/scan the entire XYZ (MySQL) ...
Farhan Islam's user avatar
2 votes
1 answer
195 views

I think that it is a general problem and it is not related with the using technologies. So, please consider the problem itself. I am storing data in Couchbase like below format productId is document ...
javac's user avatar
  • 471
0 votes
2 answers
1k views

Imagine a scenario in which a producer is producing 100 messages per second, and we're working on a system that consuming messages ASAP matters a lot, even 5 seconds delay might result in a decision ...
behz4d's user avatar
  • 1,859
0 votes
1 answer
2k views

I am working on an event driven portion of a project utilizing the use of the Zephyr Project. I am relatively new to Zephyr so I apologize if I am going about this wrong. My goal is to have a forever ...
Daniel Velazquez's user avatar
0 votes
1 answer
448 views

First of all, I wanted to gather some information one how a simple event driven architecture works in real life. If this question is not suitable in here. please kindly let me know where I can ask ...
KKK's user avatar
  • 1,662
0 votes
2 answers
309 views

How to achieve handling multiple versions of UserDetailDto while processing it from Topic-A to Topic-B with Kafka stream using processor API. Existing instance/replica of aggregation service should ...
Vinay's user avatar
  • 81
0 votes
1 answer
380 views

In event-driven design we strive to find out events that we interested of. Using Kafka we can easily subscribe (a new group.id) to a topic and start consuming events. If retention policy is default ...
zashto's user avatar
  • 11
0 votes
1 answer
970 views

When building webhooks, it's a best practice for the consumer of the webhook (e.g. the receiver of the webhook) to immediately drop any messages received into a queue to prevent it from "backing ...
user1431072's user avatar
  • 1,462
0 votes
1 answer
160 views

We've two domains: Departments and Employees. Both of them are microservices and we're using an event bus (kafka) to populate events. As usual, department can have several employees. Currently, we've ...
Jordi's user avatar
  • 23.7k
4 votes
3 answers
2k views

What are the actual advantage(s) of Bloc over Cubit? In addition to traceability (which you can also achieve with appropriate logging in Cubit), and advanced event transformations (I can't think of ...
Tenten Ponce's user avatar
  • 2,526
-1 votes
1 answer
433 views

I am quite new to event source concept but got glimpse that i need to divide my each task or operation to event and save those, but my basic do but is if for each request if you save each step as ...
Samuel Josh's user avatar

1
2 3 4 5 6