Skip to content

Commit

Permalink
fixup! rocksdb: separate non-persisted diffs into new "rollback" colu…
Browse files Browse the repository at this point in the history
…mn family
  • Loading branch information
tzemanovic committed Apr 3, 2024
1 parent a17df7f commit 9cad008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/apps/src/lib/node/ledger/storage/rocksdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ pub fn open(
let mut rollback_cf_opts = Options::default();
rollback_cf_opts.set_compression_type(DBCompressionType::Zstd);
rollback_cf_opts.set_compression_options(0, 0, 0, 1024 * 1024);
rollback_cf_opts.set_compaction_style(DBCompactionStyle::Universal);
rollback_cf_opts.set_compaction_style(DBCompactionStyle::Level);
rollback_cf_opts.set_block_based_table_factory(&table_opts);
cfs.push(ColumnFamilyDescriptor::new(ROLLBACK_CF, rollback_cf_opts));

Expand Down

0 comments on commit 9cad008

Please sign in to comment.