zhixinwen opened a new pull request, #3219:
URL: https://github.com/apache/kvrocks/pull/3219

   We need to set `rocksdb.write_options.no_slowdown` to yes in production 
because if write stall happens, it would block the event loop and KVRocks would 
not be able to serve any other requests including `INFO`. This means when write 
stall happens, we would see the cluster frozen and failover happens 
unnecessarily.
   
   However, a side effect of `rocksdb.write_options.no_slowdown` is it would 
cause replication failure when write stall happens. The replica would 
continuously tries to reconnect and restart the process, adding extra load on 
master.
   
   The solution is to add a separate config to fine control the behavior.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to