Under what circumstances - if any - does adding programmers to a team actually speed development of an already late project?
|
22
|
|
|
|
|
|
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. |
|||
|
|
Maybe if the following conditions apply:
I'll let you know the first time I see all of these at once. |
|||
|
|
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). |
|||
|
|
|
|
When the work can be split into independent units and there are more such units than programmers already on the project. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 ^_~ ) |
|||
|
|
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. |
|||
|
|
Found this, thought it might be useful: http://agileworld.blogspot.com/2006/08/law-of-diminishing-marginal-returns.html |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
||||||||
|
