how to debug c++ code in milvus #38660
-
hi, everyone thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Milvus process is running with a lot of parallel threads, if you set a breakpoint to a thread, the other thread might encounter timeout error and run into a weird state. So, milvus developers don't "attach and debug", they add temp logs in source code and print the runtime variables to diagnose, or review the full log to investigate. |
Beta Was this translation helpful? Give feedback.
thanks for your detail explain, that help me a lot !