We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e49572 commit 866f965Copy full SHA for 866f965
rust/cubestore/cubestore/src/metastore/rocks_store.rs
@@ -521,15 +521,17 @@ pub struct RocksStoreConfig {
521
impl RocksStoreConfig {
522
pub fn metastore_default() -> Self {
523
Self {
524
- checksum_type: RocksStoreChecksumType::XXHash,
525
- cache_capacity: 1024 * 8,
+ // Supported since RocksDB 6.27
+ checksum_type: RocksStoreChecksumType::XXH3,
526
+ cache_capacity: 8 * 1024 * 1024,
527
}
528
529
530
pub fn cachestore_default() -> Self {
531
532
533
534
535
536
537
0 commit comments