1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-06-01 16:57:40 +02:00

fix: automatically recover broken tail records

This commit is contained in:
Timo Kösters 2023-03-17 19:57:13 +01:00
parent 664ee7d89a
commit 5d61d5fc79
No known key found for this signature in database
GPG key ID: 0B25E636FBA7E4CB

View file

@ -45,6 +45,8 @@ fn db_options(max_open_files: i32, rocksdb_cache: &rocksdb::Cache) -> rocksdb::O
db_opts.set_compaction_style(rocksdb::DBCompactionStyle::Level);
db_opts.optimize_level_style_compaction(10 * 1024 * 1024);
db_opts.set_wal_recovery_mode(rocksdb::DBRecoveryMode::TolerateCorruptedTailRecords);
let prefix_extractor = rocksdb::SliceTransform::create_fixed_prefix(1);
db_opts.set_prefix_extractor(prefix_extractor);