-
Notifications
You must be signed in to change notification settings - Fork 902
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
Connectd throttle #7366
Connectd throttle #7366
Commits on Jul 9, 2024
-
connectd: throttle streaming gossip for peers.
We currently stream gossip as fast as we can, even if they start at timestamp 0. Instead, use a simple token bucket filter and only let them have 1MB per second (500 bytes per second for testing). Signed-off-by: Rusty Russell <[email protected]> Changelog-Protocol: connectd: we now throttle outgoing gossip at 1MB/second per peer.
Configuration menu - View commit details
-
Copy full SHA for 753c53e - Browse repository at this point
Copy the full SHA 753c53eView commit details -
gossipd: delete empty gossipd_peerd_wire.csv
gossipd no longer connects directly to per-peer daemons, so remove old file. Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7f830ec - Browse repository at this point
Copy the full SHA 7f830ecView commit details -
gossmap: add linear streaming interface.
Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3b0d2d3 - Browse repository at this point
Copy the full SHA 3b0d2d3View commit details -
connectd: use gossmap streaming interface.
This is more efficient in a few ways: 1. It's trivial to get to the end of the gossip_store, we don't have to iterate. 2. It tends to be mmaped so we don't have to call pread(). Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cda48e8 - Browse repository at this point
Copy the full SHA cda48e8View commit details -
This was removed from the spec on Apr 25, 2022. We stopped ever sending them in 0.12.0 (2022-08-23). Now we remove receive support. Changelog-Protocol: Removed support for zlib-compressed short-channel-ids in query responses. Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 223f4b0 - Browse repository at this point
Copy the full SHA 223f4b0View commit details -
connectd: do response to gossip queries, don't hand them to gossipd.
This basically means moving the code from gossipd to connectd to handle these queries. This will get connectd have finer control over ratelimiting them. Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a275e6e - Browse repository at this point
Copy the full SHA a275e6eView commit details -
connectd: tie gossip query responses into ratelimiting code.
A bit tricky, since we get more than one message at a time. However, this just means we go over quota for a bit, and will get caught when those are sent (we do this for a single message already, so it's not that much worse). Note: this not only limits sending, but it limits the actuall query processing, which is nice. Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 68eb7c1 - Browse repository at this point
Copy the full SHA 68eb7c1View commit details -
Makefile: only run cppcheck on non-generated files.
For some reason CI now hits a race where it tries to analyze a still-being-generated file: ``` tools/headerversions.c:52:30: error: syntax error [syntaxError] new = tal_fmt(NULL, template, ^ make: *** [Makefile:552: check-cppcheck] Error 123 ``` Restrict it to real source files instead. Signed-off-by: Rusty Russell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 360d2e5 - Browse repository at this point
Copy the full SHA 360d2e5View commit details