File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
rust/cubestore/cubestore/src Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -83,10 +83,7 @@ impl RocksStoreDetails for RocksCacheStoreDetails {
8383
8484 let mut block_opts = BlockBasedOptions :: default ( ) ;
8585 // https://github.com/facebook/rocksdb/blob/v7.9.2/include/rocksdb/table.h#L524
86- // RocksDB 7.x uses a new format = 5, but our previous version if RocksDB has some issues with it
87- // Let force the usage of old format for 1 month to save an ability to revert releases
88- // todo(ovr): Migrate to 5
89- block_opts. set_format_version ( 2 ) ;
86+ block_opts. set_format_version ( 5 ) ;
9087
9188 opts. set_block_based_table_factory ( & block_opts) ;
9289
Original file line number Diff line number Diff line change @@ -1153,10 +1153,7 @@ impl RocksStoreDetails for RocksMetaStoreDetails {
11531153
11541154 let mut block_opts = BlockBasedOptions :: default ( ) ;
11551155 // https://github.com/facebook/rocksdb/blob/v7.9.2/include/rocksdb/table.h#L524
1156- // RocksDB 7.x uses a new format = 5, but our previous version if RocksDB has some issues with it
1157- // Let force the usage of old format for 1 month to save an ability to revert releases
1158- // todo(ovr): Migrate to 5
1159- block_opts. set_format_version ( 2 ) ;
1156+ block_opts. set_format_version ( 5 ) ;
11601157
11611158 opts. set_block_based_table_factory ( & block_opts) ;
11621159
You can’t perform that action at this time.
0 commit comments