JMeter:高斯随机定时器与泊松随机定时器

JMeter: Gaussian random timer vs Poisson random timer

我正在尝试找出用于我的负载测试的计时器,以模拟网站流量的逐渐增长。 我看了看高斯随机定时器的广告:

To delay every user request for random amount of time use Gaussian Random Timer with most of the time intervals happening near a specific value.

和泊松随机定时器:

To pause each and every thread request for random amount of time use Poisson Random Timer with most of the time intervals occurring close a specific value.

取自this source.

现在我不太明白这两者有什么区别。它们都应用更可能接近特定值的随机延迟。那我错过了什么?他们在实践中有何不同?

区别在于用于生成随机值的算法:

泊松是基于此:

高斯使用:

两者都将基于泊松分布或高斯分布生成的随机数的值添加到恒定延迟偏移。

区别在于底层算法,详情请查看以下链接

我还建议阅读 A Comprehensive Guide to Using JMeter Timers 文章以获取有关 JMeter 计时器的详尽信息。