-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add system tests and scale with larger queue size #14
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved, I think one comment can be changed though
for deploymentName, waitCount := range a.FIFO.WaitCounts() { | ||
avg := a.getMovingAvgQueueSize(deploymentName) | ||
avg.Next(float64(waitCount)) | ||
flt := avg.Calculate() | ||
ceil := math.Ceil(flt) | ||
// TODO fix this to use configurable concurrency setting that's supplied |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this TODO comment can be removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I rather keep it for myself since its not obvious what to change. I might forget in a few days when i try to make concurrency configurable
No description provided.