|
|
|
|
|
by mathisonturing
1418 days ago
|
|
> batching multiple transactions into IO blocks where feasible. If your average transaction is substantially smaller than the IO block size, then you are probably leaving a lot of throughput on the table. Could you expand on this? A quick Google search didn't help. Link to an article or a brief explanation would be nice! |
|
For event sourcing applications, multiple transactions can be coalesced into a single IO block & operation without much drama using this technique.
Surprisingly, this technique also lowers the amount of latency that any given user should experience, despite the fact that you are "blocking" multiple users to take advantage of small batching effects.