Git Commits Are Not Linking to JIRA Tickets Due to Corrupted Indexes
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
Upon configuring the Application link and the Project link from JIRA to Bitbucket Server (or Vice Versa), the commits are not linking to JIRA Tickets.
The following appears in the atlassian-bitbucket.log
:
1
2
3
4
5
6
7
8
9
10
11
12
2012-07-30 13:58:37,938 ERROR [pool-4-thread-1] admin 815x27x1 a7bq5z 93.220.70.231,217.115.149.100 /projects/TEST/repos/test/browse c.a.s.i.i.impl.ChangesetIndexingJob Error during indexing of test
com.atlassian.bitbucket.exception.ServerException: An error occurred while executing an external process: /opt/bitbucket/caches/idx-snapshots/1/1339427723617 (No such file or directory)
at com.atlassian.bitbucket.internal.scm.git.GitCommandExitHandler.evaluateThrowable(GitCommandExitHandler.java:123) ~[na:na]
at com.atlassian.bitbucket.internal.scm.git.GitCommandExitHandler.onCancel(GitCommandExitHandler.java:47) ~[na:na]
at com.atlassian.bitbucket.scm.BaseCommand.callExitHandler(BaseCommand.java:131) ~[bitbucket-spi-1.1.2.jar:na]
at com.atlassian.bitbucket.scm.BaseCommand$CommandFuture.internalGet(BaseCommand.java:217) ~[bitbucket-spi-1.1.2.jar:na]
...
Caused by: java.io.FileNotFoundException: /opt/bitbucket/caches/idx-snapshots/1/1339427723617 (No such file or directory)
at java.io.FileInputStream.open(Native Method) ~[na:1.7.0_04]
at java.io.FileInputStream.<init>(FileInputStream.java:138) ~[na:1.7.0_04]
at java.io.FileReader.<init>(FileReader.java:72) ~[na:1.7.0_04]
at com.atlassian.bitbucket.internal.idx.impl.RepositorySnapshotServiceImpl$RepositorySnapshotIterable$1.readPage(RepositorySnapshotServiceImpl.java:143) ~[bitbucket-service-impl-1.1.2.jar:na]
Cause
It is possible that some of the files from the BITBUCKET_HOME/caches/
directory were deleted/removed.
Workaround
Since Bitbucket Server does not have a reindex function at the moment, it is not possible to re-create the indexes (caches). Therefore, we recommend to remove the repository from the Bitbucket Server Project and create it again. To do this:
Clone the repository (the repository that is affected by the problem) to a location on your local disk (by executing
git clone <repository_url> <location_on_disk>
)Delete the repository at
Repositories >> <name_of_repo> >> Settings >> Delete Repository
Recreate the repository (using the same name) at
Projects >> <name_of_project> >> Create Repository
Push your local clone to the newly created repository (executing
git push --all
from within your clone directory should work provided you've used the same repository name for the newly created repository)The repository should re-index automatically at this point, check to see whether the Issues column is populated in the UI
Limitation
Do note that performing the above workaround will delete the pull request history.
Was this helpful?