mwish

Results 249 comments of mwish
trafficstars

> Noticed that this issue has a need benchmark tag, is there a standard way to benchmark kvrocks? Perhaps you can try ycsb in your local environment. This is a...

Personally, I thin using snapshot is too heavy, it may block record gc, and maintaining it is heavy, and logic of snapshot might be heavy. Using `watchkeys` as hashmap, and...

https://mariadb.com/kb/en/pagination-optimization/ count/offset 中,offset 在 InnoDB 表现不佳,而 MyISAM 可以计算 count,所以有比较良好的性能。

Both is ok for me. Currently the different "time" is really confusing, any possible change is ok

@git-hulk @PragmaTwice Would you mind take a look? I can accept any idea here.

Thanks for the bugfix However, changing the style from Status to exception only in this submodule is so weird...

* 跨 Page 的写入操作,MVCC 是怎么保证的? * 假设数据从 Page0 -> Page1,那么 序列如下 `Page 0, Delete with version`, `Page 0 写 Undo`, `Page 1, Insert with version`, `Page 1 写 Undo`. 一共四个...

迟老师迟老师,首先恭贺毕业。 其次有一个问题,这个是相当于引入了一个 Epoch,让系统有根据 Epoch 的一致的视图?然后我看这个是发起 Checkpoint,然后从表开始一步步推进这个状态。那么这个时候,如果某个上游的请求过来,它会带 epoch吗?如果会的话,假如这个算子没有到这个 epoch,它会等待查询的节点到这个 epoch 吗?如果某个流,在某段时间内没有更新,但是来了个 epoch 更高的请求,它会怎么样呢?(我不是很熟悉流,这一段用词可能不合理,见谅)

@skyzh 非常感谢解惑!所以它不会请求一个「正在 checkpoint」的数据,不会有这种需要等待的问题是吗?