2 comments

  • x-yl1 hour ago
    The simplicity of Gorilla is attractive but for better compression ratios without too much extra compute I&#x27;d instead recommend Sprintz: <a href="https:&#x2F;&#x2F;github.com&#x2F;dblalock&#x2F;sprintz" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dblalock&#x2F;sprintz</a>.<p>The downside is that (a) Sprintz requires the data to be quantised to fixed point integers, usually fine if the data is coming out of a sensor of some sort and (b) the Huffman coding step of Sprintz requires dynamic memory allocation, whilst Gorilla is almost trivially implemented without it.<p>Also see Chimp, which proposes some small tweaks to Gorilla to improve its performance: <a href="https:&#x2F;&#x2F;dl.acm.org&#x2F;doi&#x2F;abs&#x2F;10.14778&#x2F;3551793.3551852" rel="nofollow">https:&#x2F;&#x2F;dl.acm.org&#x2F;doi&#x2F;abs&#x2F;10.14778&#x2F;3551793.3551852</a>
  • mgaunard7 minutes ago
    How does it compare to DuckDB?