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
Adding a follower affects the throughput heavily. After digging around I discovered that the usage of File instead of MFile in the followers penalties the performance a lot.
A switch to MFile also requires handling of
increase capacity if needed
unmap (and close) files at some point
unmap oldest/first file when a threshold of mapped files is reached?
unmap based on some "last access" timestamp?
The text was updated successfully, but these errors were encountered:
Adding a follower affects the throughput heavily. After digging around I discovered that the usage of
File
instead ofMFile
in the followers penalties the performance a lot.A switch to
MFile
also requires handling ofThe text was updated successfully, but these errors were encountered: