We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For the simulation I have a Harmonic container based on ghcr.io/sloretz/ros:jazzy-simulation and I run gz sim -r with an sdf with:
ghcr.io/sloretz/ros:jazzy-simulation
gz sim -r
<link name="imu_link"> <pose>0 0 0 0 0 0</pose> <sensor name='imu_gnss' type='imu'> <topic>gnss/imu</topic> <update_rate>200</update_rate> <always_on>true</always_on> <visualize>true</visualize> </sensor> </link>
Then do:
ros2 run ros_gz_bridge parameter_bridge /clock@rosgraph_msgs/msg/Clock[gz.msgs.Clock & ros2 run ros_gz_bridge parameter_bridge /gnss/imu@sensor_msgs/msg/Imu[gz.msgs.IMU &
for recording a bag I do:
docker network create -d bridge gazebo-network docker network connect gazebo-network gnss_sim_container docker run -it --rm --network gazebo-network \ --volume ${PWD}/output:/output:rw \ --workdir /output \ osrf/ros:humble-desktop-full /bin/bash cd ~/ros2_ws colcon build # Builds some custom messages source install/setup.bash cd /output ros2 bag record --use-sim-time --storage sqlite3 --all
After around 2 minutes of simulation it eats up 20GB of RAM. If I don't have the IMU it doesn't leak.
The text was updated successfully, but these errors were encountered:
Nevermind, the leak is not on the bridge.
Sorry, something went wrong.
No branches or pull requests
For the simulation I have a Harmonic container based on
ghcr.io/sloretz/ros:jazzy-simulation
and I rungz sim -r
with an sdf with:Then do:
for recording a bag I do:
After around 2 minutes of simulation it eats up 20GB of RAM. If I don't have the IMU it doesn't leak.
The text was updated successfully, but these errors were encountered: