Skip to content
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

Node: Channel writes without blocking #4276

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

bruce-riley
Copy link
Contributor

@bruce-riley bruce-riley commented Feb 24, 2025

Overview
The purpose of this PR is to address instances of writes to go channels that may block unexpectedly. I went through the guardian code, identified unbuffered channel writes, and made a determination if blocking is appropriate or not.

Conclusion
This review of the guardian code did not find any instances where a channel write would block the critical path. It did detect lesser cases that are addressed.

Implementation
In the cases where blocking is appropriate, I tagged the line with //nolint:channelcheck // <reason_why_blocking_is_appropriate>. That way when the linter is updated with this plugin, these lines will be correctly ignored..

In some of the cases where blocking is not appropriate, I changed it to use the common.WriteToChannelWithoutBlocking function instead. This does the write with a select and pegs a metric if the write would block.

In some cases (the processor, for example), a write that would block is handled in a way more consistent with the existing code.

Change in Behavior
One significant change in behavior introduced by this PR is that previously, the channel used by all the watchers to post observations to the processor (msgC) was unbuffered, meaning that if more than one watcher posted an event at roughly the same time, it could block. This doesn't seem like desirable behavior now that we have so many watchers, so I changed msgC to be buffered. This change is open for discussion!

@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch 4 times, most recently from 7a9894e to 0ba2f30 Compare February 26, 2025 16:50
@bruce-riley
Copy link
Contributor Author

bruce-riley commented Feb 27, 2025

I started out using the output of the analyze.go tool being developed by @johnsaigle which identifies writes to channels that may block (among other things). This was a helpful starting point. However, it turns out that this tool was missing some instances (I notified the author) so I ended up searching in vsc for "<-" (note the spaces on either side of the arrow) and limiting it to *.go files. This also includes writes that already have selects, which needed to be weeded out.

@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch 3 times, most recently from e722c53 to 938e413 Compare February 27, 2025 15:15
@bruce-riley bruce-riley marked this pull request as ready for review February 28, 2025 17:14
@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch 3 times, most recently from dfecc83 to 9131bfe Compare March 3, 2025 19:22
@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch 3 times, most recently from 8390827 to ed9be6e Compare March 17, 2025 20:00
@bruce-riley bruce-riley marked this pull request as draft March 17, 2025 20:03
@johnsaigle
Copy link
Contributor

johnsaigle commented Mar 19, 2025

After looking into the recent buffered channel PRs as well as the EVM watcher recently, I think that making msgC non-blocking seems like a good idea. 👍🏻

@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch from ed9be6e to ed959e1 Compare March 20, 2025 15:54
@bruce-riley bruce-riley force-pushed the node_chan_writes_without_blocking branch from 59d86b8 to 0aaf0cb Compare April 4, 2025 20:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants