-
|
Hey, My configuration: bind 0.0.0.0
port 6666
rocksdb.write_options.sync yes
rocksdb.enable_pipelined_write yes
workers 8 # also tried 16, 32, 64As far as I understand, RocksDB should be capable of handling a lot of writes, especially through its group‑commit features. There are several comparisons (like this one) that claim 100k+ writes per second on a SATA SSD. (The link shows RocksDB not KVrocks comparison but still this at least should get somewhere near isnt it) For me, without sync mode, I can achieve with I tried this https://github.com/redis/memtier_benchmark, as well as Maybe anyone can give me a hint: Best Regards Theo |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@noxomix It's expected behavior that the write performance would be bad if the sync mode is enabled, because rocksdb will call the file system |
Beta Was this translation helpful? Give feedback.
@noxomix It's expected behavior that the write performance would be bad if the sync mode is enabled, because rocksdb will call the file system
syncfor each write. Want to know why you want to enable the sync mode?