Because I'm currently struggeling to learn IBM Rational ClearCase, I'd like to hear your professional opinion.
I'm particularly interested in advantages/disadvantages compared to other version-control-systems like Subversion or Git.
|
10
|
|||||||||||||||||||
|
|
|
You can find a good comparison between ClearCase and Git in my SO answer: File-centric operationsThe most single important shortcoming of ClearCase is its old "file-centric" approach (as opposed to "repository-centric" like in SVN or Git or Perforce...) File-per-file operations means: slow recursive operations (like recursive checkout or recursive "add to source control", even by Centralized VCSThe other aspect to take into account is its centralized aspect (even though it can be "distributed" with its multi-site replicated VOB feature)
Expensive Distributed VCS optionYou can have some distributed VCS feature by replicating a Vob.
Old and not user-friendly GUI
UCM inconsistencies and in coherenciesAs mentioned in "How to Leverage ClearCase’s features", dynamic views are great (a way to see data through the network without having to copy them to the disk), but the main feature remain UCM: it can be a real asset if you have big project with complex workflow. Some shortcomings on that front:
Limited policies with Base ClearCaseUsing ClearCase without using UCM means having to define a policy to:
No application rightsClearCase right management is entirely built on system rights. No advanced API
View Storages not easily centralized/backed upThe View storages are the equivalent of the ".svn" of SubVersion, exept there is only one "view storage" per view instead of many .svn in all the directories of a SubVersion workspace. That is good. What is bad is that each operations within a view (a simple "
The first mode means: you have to backup yourself your work in progress (private files or checked-out files) Side discussion about dynamic views: To add to the "dynamic view" aspect, it has one advantage (it's dynamic) and one shortcoming (it's dynamic). The point is, you can use both, for the right reasons. Note: by small team I do not mean "small project". ClearCase is best used for large project, but if you want to use dynamic views, you need to setup up "task branches in order to isolate a small development effort per branch: that way a "small team" (a subset of your large team) can work efficiently, sharing quickly its work between its members.
Developing directly in a dynamic view is not always the best option since all (non-checked-out) files are read over the network.
|
||||||||||||||
|
|
|
Dynamic Views. Must admire a fully functional translucent file system. One big benefit is that the Intellectual Property is always in the corporate network. A laptop can be lost/stolen and no source code in jeopardy. Another is the instant access to source code and changed files, no time is ever spent downloading anything. It serves well for the purpose it has. |
||
|
|
|
|
I will be maybe alone here, but ClearCase is not that bad as everyone says. It can handle huge repositeories. Dynamic view are pretty cool and powerful feature too. It is reliable, can be customized by adding triggers and constraints on a pef file basis, permissions, etc. Unfortunatelly, it comes with a price, big price. It is costly, and to operate properly needs to be properly configured and maintained by dedicated IT team. It makes it really good for BigCo, but not so wise choice for SmallFirm. I'm a big fan of DVCS and git, but can understand why would BigCo choose ClearCase over SVN and Git. What I can't understand why would anyone choose SVN over Git ;> |
||
|
|
|
|
No atomic commits Once you checked in files it is very hard to revert to a certain state, because atomic commits aren’t supported. When checking in multiple files, each file gets a new revision (similar to CVS) and not the check-in itself. I think this is a crucial feature, because you hardly want revert single files but complete commit actions (which should map tasks). With ClearCase you can only revert to certain states by using Labels. In practice using ClearCase Labels for each check-in is overkill and thus not done. Crappy user interface The GUI of ClearCase Explorer is just a big joke. Horrible in usability and ugly looking. Different and often necessary functions aren’t provided (e.g. recursively checking in worked on artifacts). Command line tool cleartool used with cygwin is much better, but still some things aren’t available like recursively adding new files/folders to source control. I have to laugh my head off if I read a 50 lines of code long script to workaround this. High administration efforts Administrating ClearCase beast is far from obvious or lightweight (in difference to other scm-systems like CVS, subversion or Git). Expect to put quite a few dedicated ClearCase experts to just keep it running. Horrible performance Nothing is worse as making your developers wait while interfacing with SCM-tool, it is like driving with hand brakes enabled. It slows down your brain and also your work. Getting fresh new files to your snapshot view takes around 30 minutes for 10K artifacts. An update (no artifacts were changed) for the same amount takes roughly 5 minutes. When experimenting a lot and jumping between different up-to-date views means a lot of waiting. It gets even worse, when you’re working on files and you want to check-in or update them. Check-out, check-in and adding to source control cycles take around 10-15 seconds which is obviously a nightmare. It gets very annoying when you’re refactoring renaming/moving types or methods (many files can be affected). Lack of support of distributed development Today software development is often a distributed thing (developers are spread around the world working on the same product/project). ClearCase definetely isn’t suitable for this, because it is badly suited for offline work. Doing a check-out (action before you can edit a file/folder) requires that you are network connected. Here you could use the hijack option but this is rather a workaround as a feature (you basically just unlock the file on the filesystem). If your development sites are far away from your ClearCase server the check-in/check-out latency can even increase so dramatically that it is not usable at all. There are workarounds for that like using ClearCase Multisite (scm DB replica technology), but you have to pay extra for it and is not trivial to adminstrate. Git as alternative Though being a big fan+supporter of Open Source I am still willing to pay money for good software. But looking at IBM-monster ClearCase I wouldn’t invest my money here, it has all these discussed shortcomings, and further more IBM doesn’t seem to invest money to improve their product significantly. Recently I had a look a Git scm which looks very good, especially for its branching+merging features, where ClearCase has its major strengths. This information taken from http://www.aldana-online.de/2009/03/19/reasons-why-you-should-stay-away-from-clearcase/ |
||
|
|
|
|
ClearCase is perfectly usable if your willing to also use another version control system on top of it! personally I find using mercurial ontop of CC to work quite well. |
||
|
|
|
|
The support is terrible. We've had tickets open for years. Our eclipse guru actually fixed a bug in their eclipse plugin locally in about 30 minutes by disassembling the java file. But the ticket still hasn't got past level one support. Every so often they either try to sneakily close it or ping it back to us 'to try on the latest version' (even though we sent them a reproduction recipe which they could try for themselves.). Do not touch with a barge pole. |
||
|
|
|
|
Down sides of ClearCase. An addition to the most in-depth post here. 1) The merge tool is not worth shit. It barealy helps you, remembers no decisions you made, its just a glorified diff. 2) The merge tool has to check out directories to even CHECK if they need a merge. Its a bit insane. 3) I use bit keeper at work (lets assume GIT), and merging two repositories even if there are conflicts is so trivial and user friendly even with command line, while clearcase having tons of GUI tools is a long and laborious process which is also extremely error prone. 4) All GUI tools require a ton of latency. Even seeing what can be done on a file requires a high speed connection. So right-clicking in the clearcase tool on a file working from home could take a minute or two having high speed internet because of the extreme amount of networking requirements. 5) Someone can completely fuck up the repository or checkins if they make their view spec different than the team. Which is quite insane that nobody can just check out some branch, they need the appropriate view spec which will incidentally give them the right stuff. The whole concept can be nice and flexible but 99% of the time it just causes lots of pain. Did I mention you can't email your spec via. MS Outlook since CC tools don't accept UTF8 so you can't copy-paste it? 6) I have absolutely NOTHING nice to say about CC. I used it for 2 years at 2 companies and dropped it in a heart beat feeling happy the entire time. It is also impossible to just experiment with at home with your own projects, so you will still learn SVN or GIT at home, and be forced to go through clearcase pains at work. Nobody I know has ever used CC voluntarily. They only use it because some manager at work decided CC is the path to salvation and forced everyone to migrate to it. In fact my last company migrated CVS -> ClearCase and in 1 yr ClearCase -> SVN. It was that hated. 7) CC is not just one thing that makes you say no. Its like living in a house infested with ants. Each ant is just a minor inconvenience at best, but the infestation will drive you mad. |
||
|
|
|
|
I recently had to wrangle with a similar situation. Maybe you can learn from my story. The team I was newly assigned to was using a heavyweight tool in an convoluted, error-prone manner. I first attempted to sell them on my tools and processes of choice. This attempt failed miserably. I was flabbergasted that they would pick such a burdensome environment over one that was both easier and more effective. Turns out that they wanted to be disciplined, and using a painful process felt disciplined to them. It sounds wierd, but it's true. They had a lot of other misconceptions too. After I figured out what they were after, we actually stuck with the same tool suite (Serena), but massively changed how it was configured. My advice to you is to figure out what matters to your team. Ripping on ClearCase won't get you anywhere unless you speak to their interests. Also, find out why they don't want to use alternatives. Basically do a little requirements gathering and fit your tool choices to your needs. Depending on your options, who knows, Clear Case may end up being the best option after all. |
||
|
|
|
|
Clearcase is so annoying it actually drives people to write poetry about it: http://digital-compulsion.blogspot.com/2007/01/poetic-pathetic-version-control.html http://grahamis.com/blog/2007/01/24/if-it-was-free-no-one-would-download-it/ |
||
|
|
|
|
An absolute nightmare of a system. It made me wish we could go back to VSS! (Never mind any modern source-control system like Subversion or Git!)
Basically, it's slow, complicated and unreliable as hell. Oh, and did I mention it's ridiculously expensive? The only way they can possibly sell it is by talking to decision-makers who have never used the product and never will! I'm quite sure that no developer in the world would ever buy it. |
|||
|
|
|
I'm trying to consolidate a few comments into an actual post here. I'm not really here to persuade you that one is better than the other, except by way of making a few points:
ClearCase is a fine tool, but it is a complicated tool. There is no getting around this - it does not have an "easy install" mode. :-) From a technical standpoint, there's nothing that git or SVN can do that ClearCase cannot (although often the terminology is different, since Open Source projects tend to just invent new taxonomy where there already existed one), but some things are definitely easier/harder for a given system, depending on their design. ClearCase "snapshot" views are basically the same thing you would have if you checked out a repository from SVN or CVS - it's a local copy of the source code on your machine, with pointers back into the central server for tools to query version history, etc. You can work with these views without any network connection to the ClearCase server at all once they have been created, and you can "recycle" them to avoid downloading your entire repository again when you want to move to work on another branch, for example. "Dynamic Views" are basically a ClearCase invention, and the standard operating mode for a LAN. They appear the same as checking out an SVN repository, but they don't actually copy any files until you make changes. In this way the view is available immediately, but it obviously cannot be worked with if the main clearcase server is unavailable, and is unpleasant to work with over a high-latency connection. They also have the convenience of being able to be mounted as a network drive on any machine with access to the server on which they were created, so if your windows workstation dies, you can just log onto another one, mount your view, and get back to work, since all the files are stored either in the VOB server (for files you haven't modified on this branch), or the view_server (for files you have created or modified just in this view). Also, and this deserves its' own paragraph....clearmerge is nearly worth the price of admission alone. It's hands down the best merge tool that I've ever used in my life. I firmly believe a lot of bad practice in SCM has developed because of a lack of high-quality merge tools, so CVS users never learned to use branches properly and this fear of branching has propagated to the current day for no particularly good reason. Ok, all that being said, if you're looking for reasons not to use ClearCase, they're not hard to find, although I think that's the wrong way to go about it. Really you should need to come up with good reasons TO use ClearCase, not reasons for NOT using ClearCase. You should come into any SCM situation assuming that ClearCase is too much tool or too complicated a tool for the job, and then see if you have some situation that encourages you to use it anyhow. Having IBM or Rational logos is not a good reason.. :-) I would not even consider ClearCase unless you could say yes to all the following statements:
|
||||||
|
|
|
I'm not totally against ClearCase ( it does have it's advantages ), but to list out the disadvantages:
|
||
|
|
|
|
Running a JDK from a VOB in Linux. Try it, you need to play with the LD_PRELOAD variable (I know!) |
||
|
|
|
|
It sucks.....(try http://www.sourcegear.com/) |
|||
|
|
|
|
Check seriously the ClearCase UCM. UCM is a mature approach of configuration management processes, and actually it's a wrapper for the basic ClearCase version. I know SVN and GIT. I think you cannot find a mature wrapper to CM processes yet with them. I work with ClearCase UCM for many years, and I developed new add-ons that help you automates some processes. Have a look: http://gomidjets.com Tamir. |
||
|
|
|
|
Administration. I had to schedule multiple day-long downtimes to perform upgrades from 6 to 7, and to move the semi-massive (159GB) VOBS from an older server to SAN storage. With a system like git or svn+svk, this could be done overnight, nearly automagically, with no impact to users - they'd never notice. They couldn't push changes upstream, but they could continue to work. With ClearCase or raw SVN, they are at the mercy of the repository server. ClearCase UCM is a great tool, I like it and think something can be done to add like functionality to SVN/mercurial/git/bzr - not that you can't implement it with hook-scripts, but that's a custom one-off for each site. UCM is so prevalent, everyone does it, but almost no-one tracks it in the repositories. :-/ |
||
|
|
|
|
In my opinion? Only reason to have it? If you are religiously following RUP. |
||||
|
|
|
Atomic commits and changesets are my biggest gripes against ClearCase. Let's say you check in five files as part of a bug fix or refactoring. Then it is discovered that something got messed up and you need to revert. Good luck finding which five files they are and what version each one needs to be on. But let's take a step back. You have just finished editing those five files, and it's time to commit. The first four go through just fine. That last one requires a massive merge. The other four files are already checked in. They don't wait for you to finish your necessary changes in the last file. I sure hope that no one updated or is using a dynamic view. A continuous integration build server is going to fail too. Sometimes we make a whole new directory full of files that need to be checked in, but we don't want to check them in until they are done. It's early and everything is still volatile, so why check things in that you might delete very soon? OK, fine so far. Now it's time to check in. You add the newly created folder to source control. Well, ClearCase isn't recursive, so only that single folder is checked in. With SVN, that folder and everything below it is added, as you choose. The developer needs to remember to add everything, otherwise, a lot of files are going to be missing. ClearCase owns the files and folders so you cannot modify anything unless you have checked it out first. The eclipse plugin takes away a lot of the nuisance here. I can't tell you how many times I opened a file in vi to make a quick change, only to find that I had forgotten to check it out first. Checkout isn't recursive either. Updates can be painfully slow without changesets. When you update with a snapshot view, every file updates, not just the modified files. I worked on a project with 20,000+ files. I would remote in to my work machine, start the update, then drive to work; get coffee; go to my desk while it was finishing up. That might sound like an exaggeration, but it sadly isn't. Dynamic views are terrible unless you are in a very small team. And if that's the case, why do you even have ClearCase? I have seen countless people's views getting hosed because someone checked in files that broke the views of everyone else. You should always update and merge any conflicts on your own view. That way, the changes only affect you. With a dynamic view, you cannot merge down before pushing back up; you just commit and hope. I know cost probably isn't a big concern, but the developers who make the money for the company would enjoy spending the $50k-$100k (depending on ClearQuest license, which is a common addition) on either fun events or new equipment (chairs, monitors, etc.). IBM recommends having staff to keep ClearCase going. Why not re-purpose those people to generate revenue for the company, instead of making sure things don't crash and burn? Some of the reasons that I have heard for not switching:
|
||||||
|
|
|
The biggest downfall for me is both the performance (especially if your VOB is multisite or offsite), and potentially lengthy downtimes. If you're like me and work in a relatively small office as part of a large company (with no onsite IT), Clearcase servers going down can cost you the better part of a workday in non-productivity as well as getting the right people to get it fixed. Bottom line, use it only if you really need it for what you are doing and make sure you have a beefy IT budget to maintain it. |
||
|
|
|
|
Everything I have done in Clearcase always seems hard. Whereas, I've never had that impression with other systems(except maybe CVS on occasion). I've used SVN, CVS, Clearcase, and Mercurial. |
||
|
|
|
ClearCase seems extremely powerful, from the outside. But really, it's just that the number of commands and options you need to use for basic workflow is so high that these get hidden behind a few aliases or scripts, and you end up with something less powerful than CVS, with the usability of Visual Source Safe. And any time you want to do something a little more complicated than your scripts allow, you get a sick feeling in your stomach. Compare this with git, which seems complicated from the outside, but after a week working with it you feel completely in control. The repository model is simple to understand, and incredibly powerful. Because it's easy to get at the nuts and bolts, it's actually enjoyable to dig below the surface of your daily workflow. For example, figuring out a trivial task such as how to just view a non-HEAD version of a file in a snapshot view took me a couple of hours and what I ended up with was a complete hack. Not the enjoyable sort of hack either. But in git, figuring out a seemingly complicated task such as how to interactively commit only some changes,(and leave the rest for later) was great fun, and all the time I have the feeling that the VCS is allowing me to organise code and history in a way that suits me, rather than history being an accident of how we used the VCS. "Git means never having to say 'you should have'". At my work, I use git for all sorts of lightweight tasks, even within ClearCase For instance, I do TDD, and I commit to git whenever a bunch of tests pass and I'm about to refactor. When the task's eventually done, I check in to ClearCase, and git helps me review exactly what I'm changing. Just try to get ClearCase to produce a diff across a couple of files - it can't! Use Google to find out the various hacks people have tried to work around this. This is something version control should do out of the box, and it should be easy! CVS has had this for decades! |
||||||||||
|
|
|
Performance. ClearCase is powerful, stable (IF properly maintained and supervised) but it's slow. Geological sometimes. Dynamic views views lead to horrible build times, snapshot views can take ages to update (lunch break for large projects) or checkout (go home for the day). |
||||||||
|
|
|
My experience with ClearCase was a disaster, and I will second Don's statement that it requires a resident expert-- unfortunately we had more than one. I had experience with CVS and other version control systems, I was familiar with the concepts, but I found the ClearCase documentation incomprehensible and had to ask for help several times; different experts gave me conflicting advice to the point where we actually broke cd. That is, after I issued a ClearCase command in a UNIX shell, the "cd" command failed with an error message. The basic task of a version control system is really pretty simple. Honestly, I think that half a dozen commands should suffice, using a file scheme that plays well with others. To me ClearCase looks like the result of a marketing exec deliberately complicating the hell out of things to make the product look sophisticated and powerful. I've heard that it can be configured to behave in a simple, safe, reliable way, but again that requires the services of an expert-- out of the box it's like a motorized swiss army knife. |
||||||
|
|
|
I would suggest SVN for toolset and Git for scaling/workflow. I'd also suggest avoiding CC where possible. (Not counting money, the fact it is such a pain to use that is requires a full time admin is a total joke) |
||
|
|
|
|
The cost is a fairly obvious disadvantage. Not just the license cost, but also the cost of a ClearCase guru's salary. Almost every company I'm aware of that uses ClearCase seems to have at least one person whose only purpose is to tame the unruly beast. The very fact that it's complicated enough to require a full-time nanny is also worrying. |
||||||
|