We have a problem where a projection is causing the Eventstore to restart.
I have tracked down where it is happening:
The projection has been stripped right back, but the part that causes it is when we include a stream that was truncated (indirectly I think)
We have a stream created called projections_StoreProductManager_result and it contains events called StoreProductHistoryUpdatedEvent.
Our projection which kills Eventstore initially did:
fromStream(‘projections_StoreProductManager_result’) but Position stays on -1 (I have another issue on the go for that_
We changed it:
fromStream(‘StoreProductHistoryUpdatedEvent’)
And this is when our Evenstore keeps restarting.
Anyone got a clue what is going on?