-
Bug
-
Resolution: Unresolved
-
Medium
-
None
-
1.4.2, 1.4.3
-
None
-
Version FishEye 1.4 build-260
FISHEYE_HOME /adtools/vendor-apps/fisheye/fisheye-1.4
FISHEYE_INST /adtools/data/fisheye
Total Memory 264M
Free Memory 161M
Memory Usage:
request Garbage Collection
License
Server ID APQ0-7WFY-XRJ9-24ZI
Product FishEye
License FishEye: Evaluation
Licensed To FishEye: Evaluation License registered to JP Morgan Chase & Co..
Expires 2008-03-30 09:35 -0400
License Restrictions Maximum number of FishEye users: 100
Edit LicenseVersion FishEye 1.4 build-260 FISHEYE_HOME /adtools/vendor-apps/fisheye/fisheye-1.4 FISHEYE_INST /adtools/data/fisheye Total Memory 264M Free Memory 161M Memory Usage: request Garbage Collection License Server ID APQ0-7WFY-XRJ9-24ZI Product FishEye License FishEye: Evaluation Licensed To FishEye: Evaluation License registered to JP Morgan Chase & Co.. Expires 2008-03-30 09:35 -0400 License Restrictions Maximum number of FishEye users: 100 Edit License
-
3
-
Severity 2 - Major
-
17
-
From previous correspondance with Conor MacNeill:
>
> Does not cope well with branch/tag deletions
>
> One of the operations which regularly causing blocking of repository
> scanning is the removal of branches or tags within a Subversion
> repository.
> I don't know why this is the case - I opened a query with Cenqua about
> this - they weren't actually able to tell me the answer as to why it takes
> so long.
From an external view, a Subversion respository can appear huge. i.e.
if you performed an svn listing (ls) on the root of a Subversion
repository, which contains 10 branches and 100 tags, the repository will
appear to be about 111 times its actual size. This is not a problem for
Subversion itself, internally, as its access is predominantly sequential
(with respect to the directory hierarchy). As it navigates a path, it
can follow copy links - so called cheap copies. As an indexer, FishEye's
access to the directory hierarchy is predominantly "random access".
Searching with FishEye would be more difficult if it were navigating the
directory hierarchy sequentially.
We are actively researching whether we can take advantage of "cheap
copy" style linking within FishEye's index to better handle the way
Subversion works. In other word, we do recognize the problem and we are
working on solutions.
One of the approaches taken within FishEye to mitigate the problem is to
recognize tags as such and to tag the original file's entry in the
FishEye index. Effectively the tagged directory hierarchy is virtualized
by tagging the entries for the source of the tag. This keeps the size of
the FishEye index down significantly but does mean that FishEye needs to
know when a copy represents a tagging operation.
Workarounds:
- Add exclude rules in order to make Fisheye ignore the paths from the branches and tags that have been deleted.
- Set a start revision to start indexing from a particular revision.
- Split a single large repository into logical components (e.g., by project or by product).
- Change the repository definition so as to look at a subset of your repository by setting a path within your repository that you wish Fisheye to index.
- After trying one or more of the suggestions above, saving changes and exiting the repository administration panel a modal window will be presented saying that the repository needs to re-indexed for changes to take effect, and offering two options:
- Perform now will immediately erase the repository cache indexed thus far and will start re-indexing the repository from scratch.
- Ignore will keep everything indexed thus far, but you need to stop and start the affected repository to make Fisheye ignore the excluded paths from now onwards.
- As a general advice, you could benefit from a way faster indexing speed by using file protocol instead of HTTP / HTTPS for connecting to the repository. According to the Best Practices document, HTTP and HTTPS are the slowest protocols. You can switch to file protocol by either:
- Migrating Fisheye to the server where Subversion is installed, or
- Using the svnsync utility to mirror the remote repository onto the server where Fisheye is installed.
- The most important aspect for a large-repository deployment will be disk I/O speed. You definitely want a fast local HDD for Fisheye's cache. Note that NFS and SAN are not supported. Perform the disk access speed test and compare your benchmarks with the table shown in the section Grading the Results from that document in order to make sure that the HDD speed on the Fisheye server is at least OK for all file operations.
- is duplicated by
-
FE-7002 Automatically Exclude Deleted Branches in SVN
- Closed
- is related to
-
FE-1371 Fisheye should consider changing how it deals with tag deletion
- Reviewing
- relates to
-
FE-1972 Handle the deletion and re-creation of branches or tags better
-
- Closed
-
- mentioned in
-
Page Failed to load
-
Page Failed to load
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Wiki Page Loading...
-
Wiki Page Loading...
-
Wiki Page Loading...
A user accidentally did an SVN copy of "/" to "/branches/NewBranch". A minute later, realizing the mistake, they did an SVN delete of "NewBranch".
This doesn't seem to slow down subversion any, but now Fisheye indexing hangs on the delete commit for hours ...