Hello,
i am trying to start 360d perception server, i have configured broker-conn-str, which seems working.
If i try “kafkacat -b mydomain.com:9092 -L”
Metadata for all topics (from broker -1: mydomain.com:9092/bootstrap):
1 brokers:
broker 1001 at kafka-6b8c68d57c-5jghc:9092
4 topics:
topic “__consumer_offsets” with 50 partitions:
partition 23, leader 1001, replicas: 1001, isrs: 1001
partition 41, leader 1001, replicas: 1001, isrs: 1001
partition 32, leader 1001, replicas: 1001, isrs: 1001
…
Nvidia-smi
Sun Feb 3 11:35:43 2019
±----------------------------------------------------------------------------+
| NVIDIA-SMI 415.27 Driver Version: 415.27 CUDA Version: 10.0 |
|-------------------------------±---------------------±---------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla V100-SXM2… Off | 00000000:63:00.0 Off | 0 |
| N/A 34C P0 41W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 1 Tesla V100-SXM2… Off | 00000000:64:00.0 Off | 0 |
| N/A 36C P0 41W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 2 Tesla V100-SXM2… Off | 00000000:6E:00.0 Off | 0 |
| N/A 34C P0 43W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 3 Tesla V100-SXM2… Off | 00000000:6F:00.0 Off | 0 |
| N/A 35C P0 42W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 4 Tesla V100-SXM2… Off | 00000000:DD:00.0 Off | 0 |
| N/A 37C P0 41W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 5 Tesla V100-SXM2… Off | 00000000:DE:00.0 Off | 0 |
| N/A 37C P0 43W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 6 Tesla V100-SXM2… Off | 00000000:E8:00.0 Off | 0 |
| N/A 36C P0 42W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
| 7 Tesla V100-SXM2… Off | 00000000:E9:00.0 Off | 0 |
| N/A 37C P0 41W / 300W | 0MiB / 16130MiB | 0% Default |
±------------------------------±---------------------±---------------------+
±----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| No running processes found |
±----------------------------------------------------------------------------+
But when i try to start deepstream using “deepstream-360d-app -c DeepStream360d_Release/samples/configs/deepstream-360d-app/source10_gpu0.txt”
I get -
** ERROR: main:351: Failed to set pipeline to PAUSED
Quitting
ERROR from nvmsgbroker: Could not configure supporting library.
Debug info: gstnvmsgbroker.c(325): gst_nvmsgbroker_start (): /GstPipeline:pipeline/GstNvMsgBroker:nvmsgbroker:
unable to connect to broker library
ERROR from nvmsgbroker: GStreamer error: state change failed and some element failed to post a proper error message with the reason for the failure.
Debug info: gstbasesink.c(5245): gst_base_sink_change_state (): /GstPipeline:pipeline/GstNvMsgBroker:nvmsgbroker:
Failed to start
App run failed
According to https://github.com/NVIDIA-AI-IOT/deepstream_360_d_smart_parking_application/tree/master/perception_docker
gstnvmsgbroker.c(325)means that broker address is not valid, but why i can connect using kafkacat?
My broker-conn-str=mydomain.com;9092;data
Thank you