siddontang

Results 120 comments of siddontang
trafficstars

Thanks @Fullstop000 1. In the current Raft implementation, if the leader is sending the snapshot to the follower, it can still send heartbeat messages to it to keep alive, so...

@Fullstop000 You can send your Wechat account to my email [email protected] if you want to a real-time discussion.

Most of the time, the leader can only send Log meta (not including Log data) to the witness, but if the log entry contains ConfChange or Admin(like Split, Merge), we...

I think creating the server first and then running it makes more sense. We can see that mio, tokio-proto, hyper all create first then run. > What if I need...

/cc @overvenus Maybe we can send a PR later.

It seems that we only use one event loop @overvenus Can we use multi threads (one thread runs one event loop)?

@overvenus If it not hard to support `SO_REUSEPORT`, maybe we can send a PR. /cc @stepancheg

`SO_REUSEPORT` only works in Linux kernel 3.9+. If we can't use `SO_REUSEPORT`, we can let every event loop use same listening FD and use a lock like nginx to avoid...

Hi @stepancheg Thanks for your great work first. We decide to use gRPC in TiKV in production, see https://github.com/pingcap/tikv/issues/1424. But I still want to know what is the status of...