Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) dGPU • DeepStream Version 6.0 • JetPack Version (valid for Jetson only) • TensorRT Version • NVIDIA GPU Driver Version (valid for GPU only) • Issue Type( questions, new requirements, bugs) • How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing) • Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
There is a warning when I send msg through msgbroker, and I can not recive msg.
are you testing deepstream-app? please refer to “2) I see the following WARNING:” of opt\nvidia\deepstream\deepstream-7.0\sources\apps\sample_apps\deepstream-test5\README for how to modify max-size-buffers.could you share a whole log and deepstream-app configuration file?
if you add log in gst_nvmsgbroker_render, will the log be printed? especially you need to rebuild and replace the so after modifying the code.
if you are using kafka, you can use this tool /opt/nvidia/deepstream/deepstream/sources/libs/kafka_protocol_adaptor to test kafka sending first.
if gst_nvmsgbroker_render is not entered, it is abnormal because all data will go to the last element sink. you can execute “export GST_DEBUG=3,nvmsgbroker:6”, then run the app. there will be nvmsgbroker’s log. for exmaple,
did you modify the deeepstram-app code? without code modifications, will the issue can be reproduced? if so, could you share a whole log? wondering if there is any abnormal log.
what kind of broker are you using? kafka? is create_jpegsink_bin your custom code? to narrow down the issue, without code modifications, will the issue can be reproduced?
from the log, gst_nvmsgconv_transform_ip was not called. you can add log in gst_nvmsgconv_transform_ip_video_audio to check if the app hung in this function.
OK, I have solved this issue.
I send redis message in nvmsgconv plugin, but the redis server did not run well, So deepstream-app stuck in nvmsgconv plugin.
Thank you for reply.