-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Bugfixes, logging improvements for LLO (and update chainlink-data-streams) #15169
Conversation
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
8546884
to
216b675
Compare
e02b354
to
301c1a2
Compare
Flaky Test Detector for
|
This PR doesn't actually fix flakey tests but it does make them easier to identify |
// feed) so we need to make sure the buffer is large enough. | ||
// | ||
// 2000 feeds * 5s/250ms = 40_000 should hold ~5s of buffer in the worst case. | ||
chTelemetryObservation := make(chan TelemetryObservation, 40_000) |
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.
should we make the buffer length increase with the concurrency setting? (eg TransmitConcurrency * 200)?
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 don't think transmit concurrency affects it directly. We might consider making it configurable but I'd honestly prefer to choose a large enough conservative value that we don't have to worry about it, the only real penalty is using some extra memory
Flaky Test Detector for
|
…eams) (#15169) * Logging and misc LLO fixes Fixes: MERC-6626 * Quieten down enhanced EA telemetry logging * Quieten workflow pruner logging * Fix test * Fix lint
Requires
Supports