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
The ocf compressor codec creates a new zstd encoder and decoder for each call to Encode and Decode, which can results in a large number of memory allocations and impact to CPU usage.
The klauspost/compress library documents that encoders and decoders can be created once and reused many times after a reset, avoiding new allocations
The text was updated successfully, but these errors were encountered:
The ocf compressor codec creates a new zstd encoder and decoder for each call to Encode and Decode, which can results in a large number of memory allocations and impact to CPU usage.
The klauspost/compress library documents that encoders and decoders can be created once and reused many times after a reset, avoiding new allocations
The text was updated successfully, but these errors were encountered: