vote up 92 vote down star
22

Under what circumstances - if any - does adding programmers to a team actually speed development of an already late project?

flag
show 11 more comments

41 Answers

prev 1 2
vote up 23 vote down

It only helps if you have a resource-driven project.

For instance, consider this:

You need to paint a large poster, say 4 by 6 meters. A poster that big, you can probably put two or three people in front of it, and have them paint in parallel. However, placing 20 people in front of it won't work. Additionally, you'll need skilled people, unless you want a crappy poster.

However, if your project is to stuff envelopes with ready-printed letters (like You MIGHT have won!) then the more people you add, the faster it goes. There is some overhead in doling out stacks of work, so you can't get benefits up to the point where you have one person pr. envelope, but you can get benefits from much more than just 2 or 3 people.

So if your project can easily be divided into small chunks, and if the team members can get up to speed quickly (like... instantaneously), then adding more people will make it go faster, up to a point.

Sadly, not many projects are like that in our world, which is why docgnome's tip about the Mythical Man-Month book is a really good advice.

link|flag
show 1 more comment
vote up 15 vote down

Maybe if the following conditions apply:

  1. The new programmers already understand the project and don't need any ramp-up time.
  2. The new programmers already are proficient with the development environment.
  3. No adminstrative time is needed to add the developers to the team.
  4. Almost no communication is required between team members.

I'll let you know the first time I see all of these at once.

link|flag
show 2 more comments
vote up 0 vote down

If the architecture of the system being built allows for the modular addition of the remaining functionality, then adding extra programmers could actually get to the end faster. You'd need a very solid foundation and infrastructure, with plenty of excellent examples and documentation, to make this feasible. As we all know, this is pretty unlikely (but not impossible).

link|flag
vote up 0 vote down

When the work can be split into independent units and there are more such units than programmers already on the project.

link|flag
vote up 2 vote down
  • Self-contained modules that have yet to be started
  • Lacking development tools they can integrate (like an automated build manager)

Primarily I'm thinking of things that let them stay out of the currently developing people's way. I do agree with Mythical Man-Month, but I also think there are exceptions to everything.

link|flag
vote up -1 vote down

Potentially as a co-pilot. Think extreme programming pair method, but with out the experience from having the coding from start. This is assuming your co-pilot is familiar with any frame works you are using.

(just a guess though ^_~ )

link|flag
show 1 more comment
vote up 0 vote down

When your critical path of building the program isn't a single line, but rather a series or paths. Then you can assign a programmer to each critical path.

link|flag
show 4 more comments
vote up 1 vote down

Found this, thought it might be useful:

http://agileworld.blogspot.com/2006/08/law-of-diminishing-marginal-returns.html

link|flag
vote up 61 vote down

The Mythical Man Month goes into great detail on this... adding people to a late project will not help... you have costs associated in bringing someone up to speed and them learning the code base that you just can't avoid. If the project is late, you will have to look to other ways to make it on time... such as cutting features that aren't really necessary.

link|flag
1  
And like all truisms, it's sometimes wrong. As Brooks himself said in the Mythical Man Month, the law is an "outrageous oversimplification". – Airsource Ltd Sep 24 '08 at 13:58
show 2 more comments
vote up 9 vote down

If the existing programmers are totally incompetent, then adding competent programmers may help.

I can imagine a situation where you had a very modular system, and the existing programmer(s) hadn't even started on a very isolated module. In that case, assigning just that portion of the project to a new programmer might help.

Basically the Mythical Man Month references are correct, except in contrived cases like the one I made up. Mr. Brooks did solid research to demonstrate that the networking and communication costs of adding new programmers to a project will outweigh any benefits you gain from their productivity.

link|flag
show 2 more comments
vote up 34 vote down

See The Mythical Man-Month

link|flag
1  
@Christopher Mahan: It's people like you that kill communities with your rude, unnecessary snarky attitude that everyone who doesn't expound for pages and pages is an idiot. – docgnome Sep 17 '08 at 0:08
1  
docgnome, I suggest you come up with a good (even bulletpointed) synopsis of the cases pointed out in TMMM that answers the question. Page numbers or at least chapters would be nice too. :) – Jon Limjap Sep 17 '08 at 1:26
show 5 more comments
prev 1 2

Your Answer

Get an OpenID
or

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