chaoyli commented on issue #690: There should be memory leak in Doris URL: https://github.com/apache/incubator-doris/issues/690#issuecomment-470009154 To use leak sanitizer, you should ``` export BUILD_TYPE=LSAN ``` and also add this patch to doris_main.cpp ``` #include "sanitizer/lsan_interface.h" while(true) { sleep(60); __lsan_do_leak_check(); } ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
