dennis zhuang

Results 377 comments of dennis zhuang

确实存在这样的风险,需要加一个硬性限制,或者软性限制(比如交换到堆外空间等),降低内存和 gc 压力。

@farawayliu Sure! Feel free to try it.

@farawayliu Cool, i will review it today.

这个似乎就是 polardb parallel raft 的思路,本质上都是在 apply 阶段将依赖无关的 log 做并行 apply ?

@hzh0425 嗯,那是优化细节上的差异,思路上是一样的。 期待你的贡献

It seems like a good idea, we may try to implement and test it, thanks for your suggestion.

初步看了下日志,似乎是两个 election 定时器完全同步,导致选举冲突了,在同一进程启动多个 raft 节点情况下很可能出现。 我们的调整建议: 1. 同一个进程内的多个 raft 节点,建议启动时间通过增加一些随机时间(sleep) 错开启动 2. 后续我们会改进下,针对这种情况,内部增加随机因子

@steven05jiang Yep, we have a plan, but it's not urgent right now, we don't put it into 1.3.0 milestone, maybe we will implement it in next release.Please keep attention on...

v5.4.1 支持序列化 https://github.com/killme2008/aviatorscript/releases/tag/aviator-5.4.1 例子 https://github.com/killme2008/aviatorscript/blob/master/src/test/java/com/googlecode/aviator/example/SerializeExample.java

5.4.0 released, ship serialization feature for compiled expression. See the test case for usage: https://github.com/killme2008/aviatorscript/blob/master/src/test/java/com/googlecode/aviator/ExpressionSerializeTest.java The `Option.SERIALIZABLE` must be enabled.