fix(projections): added check to make sure there cannot be 2 projections for the same table (#10439)

# Which Problems Are Solved

It should not be possible to start 2 projections with the same name.

If this happens, it can cause issues with the event store such as events
being skipped/unprocessed and can be very hard/time-consuming to
diagnose.

# How the Problems Are Solved

A check was added to make sure no 2 projections have the same table

Closes https://github.com/zitadel/zitadel/issues/10453

---------

Co-authored-by: Silvan <27845747+adlerhurst@users.noreply.github.com>
(cherry picked from commit 10bd747105)
This commit is contained in:
kkrime
2025-08-13 15:51:30 +02:00
committed by Livio Spring
parent 3a0abfe440
commit 0194a68b3e
4 changed files with 212 additions and 2 deletions

View File

@@ -90,7 +90,10 @@ func StartQueries(
return nil, err
}
if startProjections {
projection.Start(ctx)
err = projection.Start(ctx)
if err != nil {
return nil, err
}
}
repo.caches, err = startCaches(