charlessolar / Aggregates.NET

.NET event sourced domain driven design model via NServiceBus and GetEventStore

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Separate consumer projection for OOB events

charlessolar opened this issue · comments

Consumers each create a projection for reading only the events they care about from ES. These projections are consumed using PINNED consumers because order is important.
However order is NOT important for OOB events, and we can speed things up by creating a separate OOB projection and consuming from it using round robin instead.

implemented in v0.4.14