Miroslav Kovar
Miroslav Kovar
Hot fix for #13602 . This is not an ideal solution, but it solves our immediate problem of crashes when profiling with coroutines enabled. I would like to open a...
I encountered a consistent crash in RocksDB compiled with coroutines and io_uring enabled. Any signal arriving during the blocking call to `io_uring_wait_cqe()` (which calls `io_uring_enter` syscall under the hood) leads...
Adds `--Xbal-perfect-parallelization-enabled` config flag, enabled by default, which activates BAL-based perfect parallelization of transaction execution. Adds a new interface, `ParallelBlockTransactionProcessor`, implemented by `ParallelizedConcurrentTransactionProcessor` (optimistic parallelization) and `BalConcurrentTransactionProcessor` (BAL-based parallelization), and...
Because `JournaledUpdater` shares a single `accounts` journal across frames, `parentUpdater.getTouchedAccounts()` currently returns the union of all accounts touched by the child frames. Although the caller can infer which frame created...