目前的设置,卡桑德拉2.2.5,八卦是1秒默认和phi阈值为8。问题,我面临的是尖峰的提示。提示上升的原因之一是节点被标记时(流言尚未传递到phi阈值)。
我读了一篇文章,其中说8的phi阈值相当于18秒,这里或那里都是几秒。现在我需要了解什么是原因,是什么阻碍了八卦交流18秒。什么是清单,需要满足的八卦沟通?
发布于 2016-10-06 00:11:30
phi = (tnow - tLast) / mean和一个节点被标记为 phi > phi_threshold / 0.434。对于您的设置(假设平均值为1,通常在节点中接收到心跳间隔1秒),如果我们在8 / 0.434 = 18.42秒内没有接收到任何心跳,节点将被标记下来。本文对该算法进行了文档化,可以找到这里。- the network: the gossip messages being dropped or the gossip port (7000/7001) being blocked;
- the nodes themselves: the nodes is busy/unresponsive (i.e. doing GC, doing some heavy load operation) so they don't get to send any/much gossip messages.
https://stackoverflow.com/questions/39859485
复制相似问题