Conversation

First test with 96 core server using zstd to compress 25,881,600 tweets. time zstd -qcd tweets.zst | zstd -v -19 --long=31 -T96 > test.zst 5.07% (238960762511 => 12123745253 bytes) real 34m31.667s user 1599m22.198s
Image
2
22
For some reason, zstd wasn't using all possible threads. I'm not sure if this was an I/O situation or due to CPU cache issues. Need to do more testing. It averaged around ~53 load average for the entire compression.
2
3
Replying to
The speed is about ~7 GB / mn, which translates into > 100 MB/s. Some I/O setup could be limited by this max speed (close to1 Gb ethernet). Alternatively, the `--long` mode is single-threaded and serialized, and while reasonably fast, could end up becoming the speed bottleneck.
1
1