C++ Sonar runner从bullseye导入xml结果-耗时一周

C++ Sonar runner从bullseye导入xml结果-耗时一周,c++,performance,sonar-runner,bullseye,C++,Performance,Sonar Runner,Bullseye,我想问一下为什么我的sonar runner已经运行了将近一周,导入了Bullseye输出的xml结果。我们的C++代码库相当大,至少有几百万个代码。p> 我已经尝试增加java堆大小以消除错误-无法更新信号量org.apache.ibatis.exceptions.PersistenceException,方法是执行export-SONAR\u RUNNER\u OPTS=-Xmx3062m-XX:MaxPermSize=512m-XX:ReservedCodeCacheSize=128m。另

我想问一下为什么我的sonar runner已经运行了将近一周,导入了Bullseye输出的xml结果。我们的C++代码库相当大,至少有几百万个代码。p> 我已经尝试增加java堆大小以消除错误-无法更新信号量org.apache.ibatis.exceptions.PersistenceException,方法是执行export-SONAR\u RUNNER\u OPTS=-Xmx3062m-XX:MaxPermSize=512m-XX:ReservedCodeCacheSize=128m。另外,我的sonar-project.properties如下所示:

sonar.sources=./cplusplus
sonar.cxx.includeDirectories=../../../ThirdPartyTools,../../../shared_3rdParty,../../../NAG_Software,../../../Archive,cplusplus/framework/include,include/

sonar.exclusions= cplusplus/framework/include/boost/*,**/*.doc,**/*.docx,**/*.ipch

sonar.cxx.coverage.reportPath=testAllAppl.xml

sonar.language=c++
testAllAppl.xml文件包含Bullseye的所有结果。我想知道我能做些什么来提高性能-这是一个基于现有帖子的不可执行的多线程处理

是否可以在排除中添加更多内容,或者我是否包含了太多的代码。/include/包含指向所有boost库和我们自己的库的软链接?我还可以尝试什么来加快性能

提前感谢您的分享