Skip to content Skip to sidebar Skip to footer

How To Get More Than 10,000 Issues On Sonarqube

I am working on a requirement where we need to generate issues reports and export them in excel. The number of issues that are generated in the project exceed the limit of 10,000 r

Solution 1:

When there are more than 10000 results, the only way to get the rest is to split your query to multiple, more refined queries with more strict filters, such that each query returns less than 10000 results. And then combine the query results to obtain your complete target result set.

This limitation to 10000 results applies to web services that are backed by ElasticSearch index, and there’s just no way around it.


Solution 2:

As reported by the error, it's not possible to browse more than 10.000 issues. You need to refine your search.


Post a Comment for "How To Get More Than 10,000 Issues On Sonarqube"