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
During the parallel writes / reads in compression / decompression, there is currently a sequence of open - write/read - close operations for every block and thread. By opening the chunk only once per thread and storing the file handler on every thread, we could avoid the open and close operations and just issue read / write ops. This should provide better performance (albeit at the cost of code complexity indeed).
The text was updated successfully, but these errors were encountered:
During the parallel writes / reads in compression / decompression, there is currently a sequence of
open - write/read - close
operations for every block and thread. By opening the chunk only once per thread and storing the file handler on every thread, we could avoid theopen
andclose
operations and just issueread / write
ops. This should provide better performance (albeit at the cost of code complexity indeed).The text was updated successfully, but these errors were encountered: