-
Notifications
You must be signed in to change notification settings - Fork 442
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
use dedicated executor for component nodes #1774
Comments
This should be a parameterized option with the defaults for the current behavior of a single single-threaded executor. If a parameter, for instance I don't think this is clear that that is the objective best solution, but it is a useful option to make available based on the needs and discussions in https://discourse.ros.org/t/nav2-composition/22175. In that ticket, we bring up analysis showing that N-single threaded executors are far more computationally efficient than a single N-multithreaded executor. We'd like to be able to have this N-single threaded container option available to us so we can do dynamic composed bring up in Nav2 rather than having to manually compose them in a process. That's not very flexible and configurable and afterall Nav2 is a framework rather than a standalone solution, do dynamically loading is more in line of what we need. We could of course create our own container to use locally, but this has clear reuse as people want to compose their systems into a single process. Companies I spoke with expressed interest in this as well, as they are currently manually composing their systems because they cannot dynamically compose them to use N-single threaded executors that they need. And it is a single parameter and code change (much simpler than what @gezp proposes above). We do not suggest any changes to the multi-threaded executor container, nor are we suggesting to merge them into a single component manager, that would be feature creep and it makes sense for those to be separate executables. Please disregard those parts of this requested change, Zhengpeng is thinking a little bigger than I think this problem warrants. What we do suggest is the following:
This will allow for the current behavior as well as the option to load each into their own executor thread, which is precisely what we're doing in manual composition (as well as some companies we spoke to that gave us that idea). @fujitatomoya what do you think about that suggestion? |
thanks for the information 👍 sorry for answering questions with question, https://discourse.ros.org/t/nav2-composition/22175 for example, application has a workload to finish.
if the result is something like above, i do not see the difference in performance. for me, it is just trading-off. what do you think? if i am missing anything, please let me know! |
i make a simple package to test. i create a publisher and subscriber on a topic with message
you could reproduce similar result by running composition with a multi-threaded-executor (thread num=2) consumes higher cpu than normal standalone case, which seems like a bit strange. |
@gezp here is what i got on my local environment.
I also confirmed that all messages from publisher are received on subscription. after all, i think btw, https://github.com/gezp/ros2_topic_performance needs to be updated as below to build.
I think that having option |
I wouldn’t argue with a better multithreaded executor as an alternative, but what’s elegant about the changes requested is that they would impact both single and multi threaded executor containers to offer an “executor per component” behavior for complex systems needing that behavior for single and/or multi threaded node needs. I think essentially we’d just make the container a templated class based on executor type so we could instantiate new ones based on T. That would future proof these changes for any potentially new executor types (like static single threaded which currently doesnt have a container for use). So I think the best answer is not either-or, but both! |
This issue has been mentioned on ROS Discourse. There might be relevant details there: https://discourse.ros.org/t/ros-2-tsc-meeting-minutes-2021-9-16/22372/1 |
@SteveMacenski we had a quick discussion on this in MW WG, i think that it is okay to have this option. |
i try to implement this feature here https://github.com/gezp/rclcpp/commit/3d48c0aacdc62c1ab688d1147679157ad578927f, what do you think about it? |
@gezp thanks for the contribution ! could you make PR, so that we can start review. |
Is this feature supported through launch file? Thanks. |
Yes, you can select this contain like any others |
Feature request
Feature description
Hi, guys
I'm working on project Reduce ROS2 Nodes and Determinism of OSPP2021 (under the mentor of Steve Macenski).
Currently, i'm trying to support composed bringup for Nav2 stack, and i have done some works about manually composed bringup (
Compile-time composition
) of Nav2, which performs better than Normal bringup , in addition, i find a problem thata large multi-threaded executor
consumes higher cpu(increase 30%-50%) thana bunch of single-threaded executors
, you can find some details here: https://discourse.ros.org/t/nav2-composition/22175.for
Run-time composition
, i notice thatrclcpp_components
only providescomponent_container
which useSingleThreadedExecutor
for all component nodes in container andcomponent_container_mt
which useMultiThreadedExecutor
.how about supporting a bunch of
SinglethreadedExecutor
forcomponent_container
? in other word, create aSingleThreadedExecutor
with dedicated thread for each component nodes.The text was updated successfully, but these errors were encountered: