Hardware / Software Environment
Hardware Platform
- Jetson AGX Orin 64 GB Developer Kit
DeepStream Version
-
DeepStream 7.1
-
Docker image:
nvcr.io/nvidia/deepstream-l4t:7.1-triton-multiarch
JetPack Version
-
JetPack 6.2.1
-
L4T 36.4.4
System Setup
We are developing a visual inspection application for Jetson devices using DeepStream.
Our setup consists of two Docker containers running on the same Jetson AGX Orin:
-
A DeepStream 7.1 container running the video processing pipeline.
-
A dedicated Triton Inference Server container (
nvcr.io/nvidia/tritonserver:24.02-py3-igpu) hosting all inference models.
The DeepStream pipeline communicates with the Triton server for inference.
Problem Description
Hi all,
after running for some time (sometimes after a few hours), the Jetson unexpectedly reboots without any warning.
The reboot appears to be a full system restart rather than an application or container crash.
Running last reboot shows multiple unexpected reboots:
jetson@jetson-dev-01:~$ last reboot
reboot system boot 5.15.148-tegra Mon Jul 6 12:20 still running
reboot system boot 5.15.148-tegra Mon Jul 6 09:17 still running
reboot system boot 5.15.148-tegra Mon Jul 6 06:12 still running
reboot system boot 5.15.148-tegra Sun Jul 5 05:49 still running
reboot system boot 5.15.148-tegra Sun Jul 5 04:25 still running
reboot system boot 5.15.148-tegra Sat Jul 4 23:35 still running
...
Observations
While the application is running, we continuously monitor the system using jtop.
We have not observed any obvious indicators that would explain the reboot:
-
No abnormal GPU or CPU temperatures.
-
No increasing memory usage or memory leak.
-
No excessive CPU utilization.
-
No significant resource spikes before the reboot.
-
No fatal errors in the application logs.
-
No Docker container crashes before the system restarts.
From the application’s perspective, the reboot appears completely unexpected.
Questions
-
Could this be related to running JetPack 6.2.1 (L4T 36.4.4) instead of L4T 36.4, which is listed as the officially supported version for DeepStream 7.1?
-
What would be the recommended approach to identify the root cause of these unexpected system reboots?
-
Is connecting a serial console currently the best (or only) practical way to capture the information needed to diagnose this type of system-level crash?
Any suggestions on how to further investigate this issue would be greatly appreciated.
Thank you!