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
It seems like aa lot of CPU is wasted zipping one-block files. If you're running the RPC poller (or even instrumented binary) at historical blocks reader-node will create .dbin.zst one block files, and within a second the merger will then uncompress all these files.
In this scenario it would be better if the compress/uncompress step was just skipped.
allow the merger to read one-block files that are either zipped or not
provide command line argument to the reader to be able to tell it not to compress files
The text was updated successfully, but these errors were encountered:
That way the file extension would also always be matching the actual compression format which would probably be useful. This would break backwards compatibility though as we would be adding .zst automatically.
It seems like aa lot of CPU is wasted zipping one-block files. If you're running the RPC poller (or even instrumented binary) at historical blocks reader-node will create .dbin.zst one block files, and within a second the merger will then uncompress all these files.
In this scenario it would be better if the compress/uncompress step was just skipped.
The text was updated successfully, but these errors were encountered: