Skip to content

Commit

Permalink
Raise compression threshold to 8KB
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Sep 26, 2024
1 parent b66d3d1 commit 572eb0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class Lz4QueryDataEncoder
extends CompressedQueryDataEncoder
{
private static final int COMPRESSION_THRESHOLD = 2048;
private static final int COMPRESSION_THRESHOLD = 8192;

public Lz4QueryDataEncoder(QueryDataEncoder delegate)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class ZstdQueryDataEncoder
extends CompressedQueryDataEncoder
{
private static final int COMPRESSION_THRESHOLD = 2048;
private static final int COMPRESSION_THRESHOLD = 8192;

public ZstdQueryDataEncoder(QueryDataEncoder delegate)
{
Expand Down

0 comments on commit 572eb0b

Please sign in to comment.