We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The historic module gets a sequence number and writes that to the events table in a transaction.
In similar circumstances, I've seen high loads cause (probably spurious) transaction conflict errors.
I don't want to reduce the transaction strictness. Instead, I suggest..
The event writing uses a similar process to projections where only a single projector can exist at a given time.
A batch of Events would be written to a pending table as a list in a simple object column.
A writer process starts, checks for any already running and then handles batches of pending event writes.
(this starts to sound a lot like a block chain...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The historic module gets a sequence number and writes that to the events table in a transaction.
In similar circumstances, I've seen high loads cause (probably spurious) transaction conflict errors.
I don't want to reduce the transaction strictness. Instead, I suggest..
The event writing uses a similar process to projections where only a single projector can exist at a given time.
A batch of Events would be written to a pending table as a list in a simple object column.
A writer process starts, checks for any already running and then handles batches of pending event writes.
(this starts to sound a lot like a block chain...)
The text was updated successfully, but these errors were encountered: