mavros: make UAS executor threads configurable#2189
Open
jacog2 wants to merge 1 commit into
Open
Conversation
vooon
requested changes
May 11, 2026
| { | ||
| constexpr size_t kMinExecutorThreads = 2; | ||
| constexpr size_t kMaxExecutorThreads = 16; | ||
| constexpr std::string_view kExecutorThreadsEnv = "MAVROS_UAS_EXECUTOR_THREADS"; |
Member
There was a problem hiding this comment.
I prefer old C-convention for the constants.
Also i don't think it really needs string view.
| const auto result = std::from_chars(input.data(), input.data() + input.size(), threads); | ||
| if (result.ec != std::errc{} || result.ptr != input.data() + input.size() || threads == 0) { | ||
| return 0; | ||
| } |
Member
There was a problem hiding this comment.
std::stoi() seems much more compact...
| return 0; | ||
| } | ||
|
|
||
| return std::clamp(threads, kMinExecutorThreads, kMaxExecutorThreads); |
Member
There was a problem hiding this comment.
If user sets amount of threads we should only limit minimum to be 2+.
Contributor
|
Hi @jacog2, I prepared a small local patch for the three review points here: switch the env parsing to Would you like me to send that patch somehow, or would you prefer to update the PR yourself? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a
MAVROS_UAS_EXECUTOR_THREADSenvironment override for the UAS plugin executor worker count.This gives ROS 2 users a low-risk mitigation path for high CPU usage by allowing deployments to run the UAS executor with 2 worker threads, while preserving the current hardware-concurrency-based default when the variable is unset.
Closes #2031.
Validation
git diff --checkI could not run
colcon testlocally in this Windows environment because ROS 2/colcon and a C++ compiler are not installed here.