GitHub user git-hulk added a comment to the discussion: Recommended configuration for large database?
@MarcoLugo Yes, that's not related to it if you're using 2.10 in both cases. What's the instance throughput and P99 latency for now? You can remove ` --rocksdb.subkey_block_cache_size 10240 --rocksdb.share_metadata_and_subkey_block_cache yes` since they are deprecated parameters. And you can try to decrease worker threads to `16`. You can try profiling it on one of your instance: Step 1: Enabled the profiling ``` redis-cli > CONFIG SET profiling-sample-commands "GET" redis-cli > CONFIG SET profiling-sample-ratio 1 redis-cli > CONFIG SET profiling-sample-record-threshold-ms 100 ``` Step 2: Investigate the profiling logs ``` # Get latest 10 profiling logs redis-cli > perflog get 10 ``` GitHub link: https://github.com/apache/kvrocks/discussions/2673#discussioncomment-11332246 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
