Skip to content

Commit 2bb2532

Browse files
committed
[NO_MERGE] Remove compression option to CassandraBlobCacheDataDefinition
1 parent 746e509 commit 2bb2532

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

server/blob/blob-cassandra/src/main/java/org/apache/james/blob/cassandra/cache/CassandraBlobCacheDataDefinition.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ public interface CassandraBlobCacheDataDefinition {
3434
.builder()
3535
.table(TABLE_NAME)
3636
.options(options -> options
37-
.withCompaction(SchemaBuilder.sizeTieredCompactionStrategy())
38-
.withCompression("LZ4Compressor", 8, 1.0))
37+
.withCompaction(SchemaBuilder.sizeTieredCompactionStrategy()))
3938
.comment("Write through cache for small blobs stored in a slower blob store implementation.")
4039
.statement(statement -> types -> statement
4140
.withPartitionKey(ID, DataTypes.TEXT)

0 commit comments

Comments
 (0)