Our application processes data according to a structure of rules configured by the client. During processing, a verbose "log" is generated at every step so the user can understand the reasons & logic behind the final processing result... and what limits (or rules or whatever) came into play.
How would you store this data in the DB?
I'd bet that 95%+ of the data is redundant from one log record to the next. I ran an LZMA on the combined text from 100 records and the output was 2% in size.
The text is only retrieved for display by Primary Key. It's never queried for filtering or search purposes. The text averages around 25k for each record.
If I compress the text for each record, I'll be at ~10% compression... vs. 2% compression (for the combined 100 records).
Ideally, I'd like to use some sort of fixed dictionary generated from the huge amount of existing data.
We're using SQL 2005. I know that SQL 2008 has row & page level compression options.. but getting our entire client base to upgrade isn't feasible at this time.
Thoughts? thanks!
UPDATE: Here's what I've done.
After a week of reading an experimenting, I wrote a procedure to generate an LZW style string dictionary on the combined text of 1000 records. I then prioritized the dictionary in a variety of ways including:
- Expected savings overall (in bytes, through substitution)
- Expected savings, only including dictionary entries present 1 or fewer times per record.
I ran a simple substitution of the highest priority X (between 100 & 1000) dictionary entries on a sample Record. Then used an LZMA alg. to compress the encoded output.
By playing with different configurations for the dictionary... I found that at best, I can improve the LZMA compression by approx 1%. In most instances, I introduce more entropy than I pull out, so the encoded, LZMA compressed data is larger than the original data compressed w/ LZMA.
I've determined that there are more redundancies within the text of each record that can be exploited by LZMA, than there are between rows.
So more than likely, I'll just LZMA all the text and call it a day.