Skip to content

Commit

Permalink
Strengthening the warning on multi-stream-projects and Inline. Closes G…
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Oct 18, 2024
1 parent c4006d5 commit 90beb71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/events/projections/multi-stream-projections.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We have replaced the earlier nomenclature of "ViewProjection" and renamed this c
:::

::: warning
**Multi-Stream Projections are registered by default as async.** This is different from Single-Stream Projections. We recommend it as safe default because their processing may be more resource-demanding than single-stream projections. They may need to process more events and update more read models. Still, you can change that setting and register them synchronously if you're aware of that tradeoff.
**Multi-Stream Projections are registered by default as async.** We recommend it as safe default because under heavy load you can easily have contention between requests that effectively stomps over previous updates and leads to apparent "event skipping" and invalid results. Still, you can change that setting and register them synchronously if you're aware of that tradeoff.

**Registering projection as async means that it requires running the
[Async Daemon](/events/projections/async-daemon) as hosted service.**
Expand Down

0 comments on commit 90beb71

Please sign in to comment.