You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the group committer thread is used for:
Calculate the minimal global user and system transaction IDs, determining whether a user transaction with remote dependency can be committed safely.
Collect and flush WAL records from all worker threads to a single WAL file
The proposed solution is:
remove group committer
each worker writes its WAL records to the local WAL file, updates the flushed system and user transaction id on the worker context
for user transactions with remote dependency, collect flushed system and user transaction id from other workers, calculate the global min flushed user and system transaction id, and commit the user transaction if safe
for recovery, read all the wall files, shuffle by page id, sort by page sequence number in the wall record, and replay the wal records
for checkpoint, the global user and system transaction id can be used to indicate lower watermarks and to truncate wal files
The text was updated successfully, but these errors were encountered:
A simple POC on ycsb workload A and B shows scalable performance improvements as worker thread increased, and great performance improvement over the group committer.
Enhancement
Currently, the group committer thread is used for:
The proposed solution is:
The text was updated successfully, but these errors were encountered: