apache / rocketmq-client-cpp

Apache RocketMQ cpp client
https://rocketmq.apache.org/
Apache License 2.0
364 stars 158 forks source link

The default trace topic is not equal to broker system trace topic #393

Open humkum opened 2 years ago

humkum commented 2 years ago

The c++ sdk's default trace topic was set to "rmq_sys_TRACE_DATA_DEFAULT_REGION",and the broker's default trace topic is "RMQ_SYS_TRACE_TOPIC". image Because of above setting,when I switched trace on,causing an exception as follows: image Moreover,the trace topic "rmq_sys_TRACE_DATA_DEFAULT_REGION" is started with "rmqsys",which is regarded as a system topic,and I can't create this topic either.

I want to know if I used trace message in a wrong way.