File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
clients/da-vinci-client/src/main/java/com/linkedin/davinci/store/rocksdb Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -338,9 +338,9 @@ public RocksDBServerConfig(VeniceProperties props) {
338
338
}
339
339
340
340
this .rocksDBBlockCacheSizeInBytes =
341
- props .getSizeInBytes (ROCKSDB_BLOCK_CACHE_SIZE_IN_BYTES , 16 * 1024 * 1024 * 1024L ); // 16GB
341
+ props .getSizeInBytes (ROCKSDB_BLOCK_CACHE_SIZE_IN_BYTES , 2 * 1024 * 1024 * 1024L ); // 2GB
342
342
this .rocksDBRMDBlockCacheSizeInBytes =
343
- props .getSizeInBytes (ROCKSDB_RMD_BLOCK_CACHE_SIZE_IN_BYTES , 2 * 1024 * 1024 * 1024L ); // 2GB
343
+ props .getSizeInBytes (ROCKSDB_RMD_BLOCK_CACHE_SIZE_IN_BYTES , 1 * 1024 * 1024 * 1024L ); // 1GB
344
344
345
345
this .rocksDBBlockCacheImplementation = RocksDBBlockCacheImplementations
346
346
.valueOf (props .getString (ROCKSDB_BLOCK_CACHE_IMPLEMENTATION , RocksDBBlockCacheImplementations .LRU .toString ()));
You can’t perform that action at this time.
0 commit comments