feat: added compression at session_log side#3075
Draft
antoniomuso wants to merge 4 commits into
Draft
Conversation
ecd0eb8 to
f30525c
Compare
Contributor
|
✅ All jobs passed Summary: 7 successful workflows
Last updated: 2025-10-20 11:34:54 UTC |
bb46417 to
5ea261f
Compare
5ea261f to
0adaf44
Compare
0adaf44 to
2a6234c
Compare
2a6234c to
41938ab
Compare
41938ab to
52f0dd6
Compare
|
Deployment failed with the following error: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR introduces LZ4 compression at the Session Log level.
Compression is applied only to private data, as encrypted data benefits the most, encryption followed by Base64 encoding significantly increases the output size.
The transaction now has a parameter
encoding?: "lz4" | "zstd" | "snappy"that specifies the compression algorithm to use. If omitted, the transaction remains uncompressed.I created two separate benchmarks to evaluate compression performance and data size reduction using realistic data structures.
Additionally, this PR adds a compress parameter to both colist and comap. This parameter is not meant to be exposed; it’s only used internally to benchmark compression more easily.
The benchmark compress.bench.ts, shows the compression performance and import performance from storage. you can run it by:
cd bench && pnpm bench compression.bench.tsLZ4
LZY
Manual testing instructions
Tests
Checklist