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
When the forward index is not dictionary encoded, we have 2 choices:
store the data as is (RAW)
store the data snappy compressed - using snappy compression codec library
In addition to snappy, we should add support for other compression codecs subject to their availability in Java libraries.
Currently by default we use Snappy compression. However, this didn't really give good compression ratio for free-text data. LZO is known to provide better compression ratio and speed for larger char/varchar data.
So, we should explore other options
Firstly, we should start with simple test case to compress and uncompress direct byte buffer and do some functional and performance tests.