GGraziadei commented on PR #8586: URL: https://github.com/apache/storm/pull/8586#issuecomment-4386170632
Hello @rzo1 thank you for your comment. You have reason, there is an implementation error, and I am fixing it. If I do not update the jitter when the latency is stable `d==0`, the jitter doesn't decrease, and this is weird. Regarding the test case `Zero deviation decays jitter toward zero` (alpha=0.5), the correct status serialization is reported here: - lastLat = UNSEED; lat=0; j=0 - lastLat=0; lat=10; d=5; j=0+alpha* (d-j)=2.5 - lastLat=10; lat=10; d=0; j=2.5 + alpha * (d-j) = 2.5 - alpha * 2.5 = 1.25 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
