SVN Incremental Indexing ERROR - StackOverflowError
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Symptoms
The following appears in the fisheye.out
:
1
2
Exception in thread "IncrementalPinger16" java.lang.StackOverflowError at java.util.AbstractList$Itr.next(AbstractList.java:345)
...
atlassian-fisheye-<date>.log
:
1
2013-08-15 08:49:26,836 WARN [IncrementalPinger1 ] fisheye IndexingPingRequest-doRequest - Exception during FishEye Incremental Indexing of svnrepo: java.lang.StackOverflowError
Cause
The JVM parameter Stack Size
is not enough to perform the Indexing
.
Resolution
Increase the size of the JVM Stack Size
, this can be one by setting the $FISHEYE_OPTS
Environment Variable (if this Variable is already set, add the following parameter to it):
1
export FISHEYE_OPTS=-Xss1024k
ℹ️ Depending on the JVM that Fisheye/Crucible is using, you have to set a higher value.
Was this helpful?