Bohu

Results 128 comments of Bohu

@alexey-milovidov Thanks for the question. I like ClickHouse style: 1. the product must solve actual problem 2. and do it better than others @jinmingjian Hi, Thanks for the comments. But...

@jyuanmurray Cool, nessDB is employing Buffered-Tree(Fractal Tree in TokuDB), and these parts have done: 1) buffered-tree index 2)MVCC in leaf 3)tree flush these parts are in processing: 1) recovery 2)...

@jyuanmurray First, thanks for your attention, no one ever cared these like you! IMHO, nessDB is employing buffered-tree as TokuDB with a simple way, this was my original intention to...

@jyuanmurray the PMA is unrolled packed memory array, it's O(log^2n) and all about memmove no need to rebalance, it's very fast on small data size, you can check it. If...

@jyuanmurray Please ping me on gtalk: [email protected]

Yes. It may be in another repo. The nessDB repo now is only the codes of storage engine. BohuTANG

Hi, @dumblob Sorry. nessDB is no longer being maintained, I will change the repo to readonly soon.

> @BohuTANG It would be nice to have support MariaDB server, looking forward to it. Hi, it's not in our plan yet, maybe schedue again next year

Hi, xenon is a MySQL agent, where it employs the raft protocol for the leader election. If we stop the xenon of A, means that the leader(raft) is down, slave-B...

xenon has 4 states when running: LEADER/FOLLOWER/CANDIDATE/IDLE `leader-start-command` only for the leader state starts where we want it to do the commands, such as vip mount: https://github.com/radondb/xenon/blob/master/src/raft/leader.go#L412 we do not...