vote up 13 vote down star
1

Based on a few posts I've read concerning version control, it seems people think pessimistic locking in a version control system is a bad thing. Why? I understand that it prevents one developer from submitting a change while another has the file checked out, but so what? If your code files are so big that you constantly have more than one person working on them at the same time, I submit that you should reorganize your code. Break it up into smaller functional units.

Integration of concurrent code changes is a tedious and error-prone process even with the tools a good version control system provides to make it easier. I think it should be avoided if at all possible. So, why is pessimistic locking discouraged?

flag

73% accept rate

9 Answers

vote up 6 vote down check

It depends on your project and team generally. Pessimistic locking is good because it is easy to understand - one dev at a time, and no merging required!

Howvever, the bad thing about is is exactly that - one dev at a time. I have the situation right now where a colleague has gone on-site, and before he left, he checked everything out so that if he had to fix any bugs, he could return and check all his changes in.... great for him, lousy for me and the rest of the dev team at base.

If you can get around pessimistic locking in your team then its fine to use it, really, the biggest reason people hate it is because its Visual SourceSafe's default practice. If you're not confident in merging lots of changes, then you have another reason to use it - if you've ever used a optimistic locking SCM, and cocked up a merge, you'll know how hard it is to recover.

If you can handle merging, then optimistic locking is superior and I'd recommend it, but you don't have to hand your geek card in if you don't want to use it.

link|flag
vote up 11 vote down
  1. Go play with Source Safe and have a developer leave for a two week vacation. Add to that the VSS admins not being around. Now you have a fix to be posted but you can't because of the developer
  2. If you have multiple features and/or bug fixes being worked on. No matter how small your code is broken up, you will still have contention for a central file.
link|flag
I totally agree, Scott. – itsmatt Sep 26 '08 at 16:18
I agree, but why reference SourceSafe? We used it for many years in concurrent checkout mode - no problems. (I never really understand all the hate for VSS. I guess we were lucky). – Steve Fallows Sep 26 '08 at 17:19
@Steve: Yes, you can make VSS work. You can make zip files work too, if you're motivated enough to do it. VSS combined crappy merging, non-atomic commits, and a change-set system consisting of tags and nothing else. Not quite juggling chain saws, but dangerous enough just the same. – Shog9 Sep 26 '08 at 18:09
vote up 3 vote down
  1. Bob needs to edit FooBar.java
  2. John has it checked out for editing
  3. Bob edits his local copy anyway and saves it as FooBar.java.bak
  4. When John checks his in, Bob checks it out
  5. Bob copies FooBar.java.bak over it and checks it in
  6. John gets to reimplement his feature

I've seen it happen time and time again. Developers do this because this process is annoying:

  1. Bob needs to edit FooBar.java
  2. John has it checked out for editing
  3. Bob has to wait twiddling his thumbs until John is done

Pessimistic locking feels like amateur hour, sorry.

link|flag
Bob's a real jerk for not merging when he's using a sandbox paradigm. John is a real dummy for not just retrieving his earlier version from source control and merging his changes with Bob's. – indiv Sep 26 '08 at 17:42
Pessimistic locking says you can't check a file in when someone else has it locked, but if you can't at least check it out, your VCS is a piece of shit. Find a new one. Bob checks it out, makes his changes, John finally checks in, Bob checks in and is forced to merge. – raven Sep 26 '08 at 17:53
vote up 2 vote down
  • You don't always have the option to break files apart
    • Config Files
    • XML Files
  • Even relatively small files can still contain distinct parts that more than one developer needs access to
    • Libraries
    • Utilities
  • Merging Tools are much smarter than they have ever been
    • Conflicts are rather rare
  • Reduces delays due to developers having files "accidentally" checked out
link|flag
vote up 1 vote down

pessimistic locking is (personal experience) in the way of collaboration. It's sometimes easily replaced by good team communication. Just by saying "hey I'm gonna work on this few files for a while".

I've worked in teams of 2 to 6 people without locking and we never had a problem, beyond some usual and necessary merges.

I also worked once with locking in a Visual Source Safe hosted project. It was IMHO counter-productive.

link|flag
vote up 1 vote down

If a developer can't handle merging and fixing conflicts, he should be re-educated.

It is common for even small files to get conflicts, for example with JSPs one person (web developer) could be changing the layout code, and someone else could change the API for the model that the JSP is using.

link|flag
vote up 1 vote down

if your code files are so big that you constantly have more than one person working on them at the same time

If this is the case it's time for 'human beings' to take charge and coordinate any changes. In the ideal case, and if your project management is any good, you will rarely hit a time where you're trying to change a locked file because someone will have coordinated things so this won't practically happen.

In other words you'll know 'Bob' is doing a large set of changes in components X/Y/Z, if you have a bug fix in component X you'll know to talk to Bob before trying to submit your changes.

As I say this is ideal ;)

link|flag
vote up 0 vote down

Software developers are always optimists -- just look at their estimating skils!

In practice we find conflicts are rare and the benefits of not having to worry about locking outweigh the occasional conflict resolution step.

link|flag
"Software developers are always optimists -- just look at their estimating skils!" - Love it!! – tjjjohnson May 21 at 22:25
vote up 0 vote down

Pessimistic locking is a good idea if serious conflicts are going to be likely. For most programming you won't see any serious conflicts, so pessimistic locking is fairly pointless. Exceptions to this would be if you are:

  • Working on binary files where you can't really merge - art assets (models, textures, etc) are a good example.
  • Working with non-technical users who don't know how to merge, and don't want to learn (mostly artists, but some technical writers will throw a fit about this too).
  • Working on very large files which can't easily be merged or broken into smaller files due to the high degree of complexity (never seen a situation like that first hand, but I'm sure it's possible).

Otherwise...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.