kamilmysliwiec / nest-cqrs-example

The example usage of Nest CQRS module
https://nestjs.com
506 stars 117 forks source link

Using Kafka as Event Bus #8

Open rahul33 opened 5 years ago

rahul33 commented 5 years ago

Is it possible to use nest-cqrs but with Kafka for an event bus? Whats your opinion and at high level which pieces of code would I need to work with, for ex - https://github.com/nestjs/cqrs/blob/master/src/event-bus.ts, and?

Thanks!

imissyouso commented 4 years ago

Is it possible to use Kafka as QueryBus/CommandBus?

mikkhait commented 4 years ago

Has anyone implemented Kafka successfully? What was your experience?

stewartmcgown commented 4 years ago

I'm currently using Kafka in the microservices transport module, but it lacks the inate typing support that I would like. If I manage to work it into this CQRS pattern, I'll submit a pull request here with my attempt!

RobertLowe commented 3 years ago

Also would like to see kafka examples

dantzjs commented 11 months ago

Here! I would like to use Kafka with CQRS too

knji commented 9 months ago

What's the status of this request? Can we use Kafka and Redis for the EventBus or CommandBus respectively? The current default implementations based on memory are not practical for real world usage.